$map
untuk mengulangi loop subRoom
array dan in
untuk mengembalikan bidang wajib
$filter
untuk mengulangi loop notifications
dan $size
untuk mendapatkan total elemen dari hasil yang difilter
db.collection.find({ id: 1 },
{
_id: 0,
room: 1,
notRead: {
$size: {
$filter: {
input: "$notifications",
cond: {
$not: { $in: ["User1", "$$this.read"] }
}
}
}
},
"subRoom": {
$map: {
input: "$subRoom",
in: {
id: "$$this.id",
notRead: {
$size: {
$filter: {
input: "$$this.notifications",
cond: { $not: { $in: ["User1", "$$this.read"] } }
}
}
}
}
}
}
})
Taman bermain