Puoi provare,
$facet
per creare 2 array,users
dettagli utente nome e ID studente, secondo tutti i dettagli utenti inallUsers
$project
itera ciclo$map
inserisci come array allUsers$map
input come StudentsReffered array$map
input come array di studenti$reduce
per ottenere i dati dello studente dausers
array quando la condizione corrisponde
$unwind
decostruisci l'array allUsers$replaceWith
sostituisci l'oggetto allUsers nella radice
db.collection.aggregate([
{
$facet: {
users: [
{
$project: {
studentId: 1,
name: 1
// add fields as you want it will automatically reflect in join
}
}
],
allUsers: []
}
},
{
$project: {
allUsers: {
$map: {
input: "$allUsers",
in: {
$mergeObjects: [
"$$this",
{
studentsReffered: {
$map: {
input: "$$this.studentsReffered",
in: {
$mergeObjects: [
"$$this",
{
students: {
$map: {
input: "$$this.students",
as: "s",
in: {
$reduce: {
input: "$users",
initialValue: { studentId: "$$s.studentId" },
in: {
$cond: [
{ $eq: ["$$this.studentId", "$$s.studentId"] },
"$$this",
"$$value"
]
}
}
}
}
}
}
]
}
}
}
}
]
}
}
}
}
},
{ $unwind: "$allUsers" },
{ $replaceWith: "$allUsers" }
])