$expr
を使用する必要があります $setIsSubset
を使用する場合 (これは式です)$match
内 :
db.test.aggregate([
{
$match: {
$expr: {
$setIsSubset: [["hello", "you"], "$words"]}
}
}
])
3.6より前のMongoDBバージョンの場合 $redact を使用できます :
db.test.aggregate([
{
$redact: {
$cond: {
if: { $eq: [ { $setIsSubset: [["hello", "you"], "$words"]}, true ] },
then: "$$KEEP",
else: "$$PRUNE"
}
}
}
])