U moet queryvoorwaarde
opgeven voor de populatiemethode.
Zoiets:
const userWithCompanies = await User
.findById(userId)
.populate({
path: 'companies',
match: {
title: {$regex: `.*${search}.*`, $options: "i"}
});
U moet queryvoorwaarde
opgeven voor de populatiemethode.
Zoiets:
const userWithCompanies = await User
.findById(userId)
.populate({
path: 'companies',
match: {
title: {$regex: `.*${search}.*`, $options: "i"}
});