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

Come aggregare l'array di ricerca nidificato in mangusta?

  • $lookup con user raccolta
  • $unwind decostruisci id_user matrice
  • $lookup con language ritiro e restituzione in languages campo
  • $map per iterare l'aspetto di id_user.language matrice
  • $reduce per iterare il ciclo di languages array restituito dalla raccolta, controlla la condizione se language_id match quindi restituisci name
db.cvsubmit.aggregate([
  {
    $lookup: {
      from: "user",
      localField: "id_user",
      foreignField: "_id",
      as: "id_user"
    }
  },
  { $unwind: "$id_user" },
  {
    $lookup: {
      from: "language",
      localField: "id_user.language.language_id",
      foreignField: "_id",
      as: "languages"
    }
  },
  {
    $addFields: {
      languages: "$$REMOVE",
      "id_user.language": {
        $map: {
          input: "$id_user.language",
          as: "l",
          in: {
            _id: "$$l._id",
            level: "$$l.level",
            name: {
              $reduce: {
                input: "$languages",
                initialValue: "",
                in: {
                  $cond: [
                    { $eq: ["$$this._id", "$$l.language_id"] },
                    "$$this.name",
                    "$$value"
                  ]
                }
              }
            }
          }
        }
      }
    }
  }
])

Parco giochi