Bạn có thể sử dụng $filter
và $setUnion
/ $concatArrays
toán tử để nối và lọc tài liệu của bạn. Ngoài ra, bạn cần sử dụng $ifNull
toán tử để thay thế trường bị thiếu bằng mảng trống.
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 } } }
])