Je hebt een voorlopige $match
nodig
stap in uw pijplijn om alleen die documenten te selecteren waar "actie" niet gelijk is aan "wachten".
db.collection.aggregate([
{ "$match": { "action": { "$ne": "wait" } } },
{ "$group": {
"_id": "$user.name",
"actions": { "$push": "$action" },
"total": { "$sum": 1 }
}}
])