Puoi provare,
$group
peruserId
e ottienitotalSeen
contare usando$cond
sestatus
èseen
, ottieni il conteggio totale delle notifiche utilizzando$sum
,$project
per mostrare i campi obbligatori e calcolare la percentuale utilizzando$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]
}
}
}
])