Sie können Ihrer Aggregationspipeline einfach weitere Phasen hinzufügen. Zum Beispiel:
db.items.aggregate([
{$match:
{
status:"online"
}
},
{$group :
{
_id: "$category",
total_price: {$sum:"$price"},
}
},
{$match:
{
total_price:{$gt:50}
}
},
{$group :
{
_id: "1",
avg_price: {$avg:"$total_price"},
}
},
]);
BEARBEITET basierend auf Klarstellungen