Query

PHOTO EMBED

Mon Jan 08 2024 16:54:33 GMT+0000 (Coordinated Universal Time)

Saved by @CodeWithSachin

[
  {
    "$match": {
       "programCode": { "$in": ["", null] } 
    }
  },
  {
    $lookup: {
      from: "subscription",
      localField: "participantId",
      foreignField: "userId",
      as: "result"
    }
  },
 {
    $match: {
      $expr: { $eq: [ { $size: "$result" }, 0 ] }
    }
  },
  {
      $lookup:{
          from:"participant",
          localField:"participantId",
          foreignField:"_id",
          as:"participantData"
      }
  },

  {
  "$project": {
    _id:0,
    "size": { "$size": "$result" },
    "participantId":1,
    email:"$participantData.email",
    planName:"$result.subscriptionPlan.name"
  }
}
  
]
content_copyCOPY