Vous pouvez agréger comme ci-dessous :
-
$group
par lestore
champ, calculez lesubtotal
. -
$project
un champdoc
pour conserver lesubtotal
groupe intact, lors du groupe suivant. -
$group
parnull
et accumulez le total net.
Code :
db.invoices.aggregate([{
$group: {
"_id": "$store",
"subtotal": {
$sum: "$total"
}
}
}, {
$project: {
"doc": {
"_id": "$_id",
"total": "$subtotal"
}
}
}, {
$group: {
"_id": null,
"total": {
$sum: "$doc.total"
},
"result": {
$push: "$doc"
}
}
}, {
$project: {
"result": 1,
"_id": 0,
"total": 1
}
}
])
Sortie :
{
"total": 1000,
"result": [{
"_id": "ABC",
"total": 700
}, {
"_id": "XYZ",
"total": 300
}
]
}