$match
inde i $lookup
pipeline har ingen relation til jobCollection
Dokumenter. Den filtrerer kun dokumenterne for tasks
kollektion. Så du skal bruge en mere $match
trin efter $lookup
for at bortfiltrere ROOT(jobCollection
) dokumenter.
jobCollection.aggregate([
{ "$match": { "$text": { "$search": "1234" }}},
{ "$lookup": {
"from": "task",
"let": { "job_id": "$_id" },
"pipeline": [
{ "$match": {
"$expr": {
"$and": [
{ "$eq": ["$job", "$$job_id"] },
{ "$eq": ["$status", "FAILED"] }
]
}
}}
],
"as": "tasks"
}},
{ "$match": { "tasks": { "$ne": [] }}},
])