mongose find error
my search code你好,我想用mongoose快速列出数组中的错误。我找不到结果。
const locationValidate = await iUzmanlıklar.find(
{
$or: [
{ mainName: { $regex: searchRgx, $options: "i" } },
],
$and:[
{ mainCategoryId: _referenceCategory },
]
},'specialtyId translations isList mainName referenceCategory uuid authorizedCategories');
我想发送一个请求以获得快速结果。
1条答案
按热度按时间b5lpy0ml1#
如果你想获取所有对于特定
mainCategoryId
错误为true的翻译,你可以使用下面的代码:'translations.$': 1
投影用于在结果中仅包括匹配的平移。locationValidate
应该是一个可以根据需要进一步处理或记录的数组。