クエリ条件
を指定する必要があります ポピュレートメソッドの場合。
このようなもの:
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"}
});