Bạn có thể thử,
-
$facet
để tạo 2 mảng,users
tên chi tiết người dùng và studentId, thứ hai là tất cả chi tiết người dùng trongallUsers
-
$project
lặp lại vòng lặp-
$map
đầu vào dưới dạng mảng allUsers -
$map
nhập với tư cách là sinh viênMảng được giới thiệu -
$map
đầu vào dưới dạng mảng sinh viên -
$reduce
để lấy dữ liệu của học sinh từusers
mảng khi điều kiện phù hợp
-
-
$unwind
giải cấu trúc mảng allUsers -
$replaceWith
thay thế đối tượng allUsers trong thư mục gốc
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" }
])