Bạn có thể thử,
-
$addFields
để tạo một mảng duy nhất được gọi làuserIds
tạo thành cả hai mảngfollowers
vàfollowings
,$setUnion
để nhận các id duy nhất, -
$lookup
với bộ sưu tập của người dùng -
$project
để hiển thị các trường,-
followers
lấy fullName, $ map để lặp lại vòng lặp củafollowers
và lấy tên củafollowerId
từ mảng người dùng bằng cách sử dụng$reduce
và$cond
-
followings
lấy fullName, $ map để lặp lại vòng lặp củafollowings
và lấy tên củafollowingId
từ mảng người dùng bằng cách sử dụng$reduce
và$cond
-
db.followings.aggregate([
{
$addFields: {
userIds: {
$setUnion: [
{
$map: {
input: "$followers",
in: "$$this.followerId"
}
},
{
$map: {
input: "$followings",
in: "$$this.followingId"
}
}
]
}
}
},
{
$lookup: {
from: "users",
localField: "userIds",
foreignField: "_id",
as: "users"
}
},
{
$project: {
userId: 1,
followers: {
$map: {
input: "$followers",
as: "f",
in: {
$mergeObjects: [
"$$f",
{
fullName: {
$reduce: {
input: "$users",
initialValue: "",
in: {
$cond: [
{ $eq: ["$$this._id", "$$f.followerId"] },
"$$this.fullName",
"$$value"
]
}
}
}
}
]
}
}
},
followings: {
$map: {
input: "$followings",
as: "f",
in: {
$mergeObjects: [
"$$f",
{
fullName: {
$reduce: {
input: "$users",
initialValue: "",
in: {
$cond: [
{ $eq: ["$$this._id", "$$f.followingId"] },
"$$this.fullName",
"$$value"
]
}
}
}
}
]
}
}
}
}
}
])