Podes tentar,
$group
poruserId
e obtenhatotalSeen
contar usando$cond
sestatus
éseen
, obtenha a contagem total de notificações usando$sum
,$project
para mostrar os campos obrigatórios e calcular a porcentagem usando$divide
e$multiply
db.collection.aggregate([
{
$group: {
_id: "$userId",
totalSeen: {
$sum: { $cond: [{ $eq: ["$status", "seen"] }, 1, 0] }
},
total: { $sum: 1 }
}
},
{
$project: {
_id: 0,
userId: "$_id",
notificationPercentage: {
$multiply: [{ $divide: ["$totalSeen", "$total"] }, 100]
}
}
}
])
Playground