Měli byste použít $expr
pokud chcete použít $setIsSubset
(což je výraz) uvnitř $match
:
db.test.aggregate([
{
$match: {
$expr: {
$setIsSubset: [["hello", "you"], "$words"]}
}
}
])
Pro verze MongoDB nižší než 3.6 můžete použít $redact :
db.test.aggregate([
{
$redact: {
$cond: {
if: { $eq: [ { $setIsSubset: [["hello", "you"], "$words"]}, true ] },
then: "$$KEEP",
else: "$$PRUNE"
}
}
}
])