-
$map
all_users
のループを繰り返す 配列 -
$cond
id
の場合は条件を確認してください 選択したユーザーのid
にあります 次に、selected
で「yes」または「no」を返します。 フィールド -
$mergeObject
現在のユーザーオブジェクトを上記のselected
とマージします フィールド
db.collection.aggregate([
{
$project: {
all_users: {
$map: {
input: "$all_users",
in: {
$mergeObjects: [
"$$this",
{
selected: {
$cond: [
{ $in: ["$$this.id", "$selected_users.id"] },
"yes",
"no"
]
}
}
]
}
}
}
}
}
])