U kunt als volgt aggregeren:
-
$group
bij destore
veld, bereken hetsubtotal
. -
$project
een velddoc
om hetsubtotal
te behouden groep in tact, tijdens de volgende groep. -
$group
doornull
en verzamel het netto totaal.
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
}
}
])
Uitvoer:
{
"total": 1000,
"result": [{
"_id": "ABC",
"total": 700
}, {
"_id": "XYZ",
"total": 300
}
]
}