Du måste ange frågevillkor
för fylla metoden.
Något så här:
const userWithCompanies = await User
.findById(userId)
.populate({
path: 'companies',
match: {
title: {$regex: `.*${search}.*`, $options: "i"}
});
Du måste ange frågevillkor
för fylla metoden.
Något så här:
const userWithCompanies = await User
.findById(userId)
.populate({
path: 'companies',
match: {
title: {$regex: `.*${search}.*`, $options: "i"}
});