-
$map
để lặp lại vòng lặp của subRoom
mảng và in
để trả về các trường bắt buộc
-
$filter
để lặp lại vòng lặp của notifications
và $size
để nhận tổng số phần tử từ kết quả đã lọc
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"] } }
}
}
}
}
}
}
})
Sân chơi