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

Mongoose unisce due raccolte e ottiene solo campi specifici dalla raccolta unita

Puoi provare,

  • $lookup con students raccolta
  • $project per mostrare i campi obbligatori, $map per iterare il ciclo dell'array top10 e utilizzare all'interno $reduce per ottenere il nome completo dagli studenti e unirlo ai primi 10 oggetti utilizzando $mergeObjects
db.exams.aggregate([
  {
    $lookup: {
      from: "students",
      localField: "top10.studentId",
      foreignField: "_id",
      as: "students"
    }
  },
  {
    $project: {
      test: 1,
      students: {
        $map: {
          input: "$top10",
          as: "top10",
          in: {
            $mergeObjects: [
              "$$top10",
              {
                fullname: {
                  $reduce: {
                    input: "$students",
                    initialValue: 0,
                    in: {
                      $cond: [
                        { $eq: ["$$this._id", "$$top10.studentId"] },
                        "$$this.fullname",
                        "$$value"
                      ]
                    }
                  }
                }
              }
            ]
          }
        }
      }
    }
  }
])

Parco giochi

Seconda opzione puoi usare $unwind prima di $lookup ,

  • $unwind decostruisci top10 matrice
  • $lookup con students raccolta
  • $addFields per convertire l'array degli studenti in un oggetto usando $arrayElemtAt
  • $group di _id e costruisci l'array degli studenti e invia i campi richiesti
db.exams.aggregate([
  { $unwind: "$top10" },
  {
    $lookup: {
      from: "students",
      localField: "top10.studentId",
      foreignField: "_id",
      as: "students"
    }
  },
  { $addFields: { students: { $arrayElemAt: ["$students", 0] } } },
  {
    $group: {
      _id: "$_id",
      test: { $first: "$test" },
      students: {
        $push: {
          studentId: "$top10.studentId",
          score: "$top10.score",
          fullname: "$students.fullname"
        }
      }
    }
  }
])

Parco giochi