Możesz spróbować,
$facet
aby utworzyć 2 tablice,users
dane użytkownika name i studentId, drugie szczegóły wszystkich użytkowników wallUsers
$project
iteracja pętli$map
wejście jako tablica allUsers$map
wprowadź jako tablica referencji studentów$map
wejście jako tablica uczniów$reduce
uzyskać dane ucznia odusers
tablica, gdy warunek jest zgodny
$unwind
zdekonstruuj tablicę allUsers$replaceWith
zastąp obiekt allUsers w katalogu głównym
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" }
])