Можете да опитате,
$addFields
за да направите уникален масив, нареченuserIds
образуват двата масиваfollowers
иfollowings
,$setUnion
за получаване на уникални идентификатори,$lookup
с потребителска колекция$project
за показване на полета,followers
вземете пълно име, $map за повторение на цикъл отfollowers
и вземете името наfollowerId
от потребителски масив с помощта на$reduce
и$cond
followings
вземете пълно име, $map за повторение на цикъл отfollowings
и вземете името наfollowingId
от потребителски масив с помощта на$reduce
и$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"
]
}
}
}
}
]
}
}
}
}
}
])