Můžete použít $filter
a $setUnion
/$concatArrays
operátory pro zřetězení a filtrování vašich dokumentů. Také musíte použít $ifNull
operátor, který nahradí chybějící pole prázdným polem.
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 } } }
])