Możesz użyć $filter
i $setUnion
/$concatArrays
operatorów do łączenia i filtrowania dokumentów. Musisz także użyć $ifNull
operatora, aby zastąpić brakujące pole pustą tablicą.
db.collection.aggregate([
{ "$project": {
"web_images": {
"$filter": {
"input": {
"$setUnion": [
{ "$ifNull": [ "$pictures", [] ] },
{ "$ifNull": [ "$logos", [] ] }
]
},
"as": "p",
"cond": { "$eq": [ "$$p.web", "true" ] }
}
}
}},
{ "$match": { "web_images.0": { "$exists": true } } }
])