試すことができます
-
$addFields
userIds
という一意の配列を作成します 両方の配列を形成するfollowers
およびfollowings
、$setUnion
一意のIDを取得するには -
$lookup
ユーザーコレクション付き -
$project
フィールドを表示するには、followers
fullName、$ mapを取得して、followers
のループを繰り返しますfollowerId
の名前を取得します$reduce
を使用してユーザー配列から および$cond
followings
fullName、$ 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"
]
}
}
}
}
]
}
}
}
}
}
])