MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Mongo $ filtro di ricerca utilizzando la query nidificata

Il $match dentro $lookup la pipeline non ha alcuna relazione con jobCollection documenti. Filtra i documenti solo per tasks collezione. Quindi, devi usare un altro $match fase dopo il $lookup per filtrare la ROOT(jobCollection ) documenti.

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": [] }}},
])