$filter
を使用できます
および$setUnion
/ $concatArrays
ドキュメントを連結してフィルタリングする演算子。また、 $ifNull
を使用する必要があります
欠落しているフィールドを空の配列に置き換える演算子。
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 } } }
])