Vous pouvez utiliser ci-dessous aggregation
avec mongodb 3.6 et plus
Vous devez simplement utiliser $match
avec la collection enfant comme vous le feriez avec la collection parent dans la première étape.
db.BusinessCollection.aggregate([
{ "$match": { "clinics": { "$type": "array" }}},
{ "$lookup": {
"from": "ClinicsCollection",
"let": { "clinics": "$clinics" },
"pipeline": [
{ "$match": {
"$expr": {
"$and": [
{ "$in": ["$_id", "$$clinics"] },
{ "$not": { "$eq": ["$_id", 1] }}
]
}
}}
],
"as": "clinics"
}}
])