आपको क्वेरी कंडीशन
देनी होगी आबाद विधि के लिए।
कुछ इस तरह:
const userWithCompanies = await User
.findById(userId)
.populate({
path: 'companies',
match: {
title: {$regex: `.*${search}.*`, $options: "i"}
});
आपको क्वेरी कंडीशन
देनी होगी आबाद विधि के लिए।
कुछ इस तरह:
const userWithCompanies = await User
.findById(userId)
.populate({
path: 'companies',
match: {
title: {$regex: `.*${search}.*`, $options: "i"}
});