$map
pour itérer la boucle de subRoom
tableau et in
pour renvoyer les champs obligatoires
$filter
pour itérer la boucle de notifications
et $size
pour obtenir le nombre total d'éléments à partir du résultat filtré
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"] } }
}
}
}
}
}
}
})
Aire de jeux