Puoi sfruttare $objectToArray
e $arrayToObject
operatori per leggere dinamicamente le chiavi degli oggetti. Per sbarazzarsi di _id
e name
campi che puoi $filter
di $type
.
db.collection.aggregate([
{
$project: {
_id: 0,
fields: {
$filter: {
input: { $objectToArray: "$$ROOT" },
cond: { $eq: [ { $type: "$$this.v" }, "double" ] }
}
}
}
},
{
$unwind: "$fields"
},
{
$group: {
_id: "$fields.k",
total: { $sum: "$fields.v" }
}
},
{
$group: {
_id: null,
aggregates: { $push: { k: "$_id", v: "$total" } }
}
},
{
$replaceRoot: {
newRoot: { $arrayToObject: "$aggregates" }
}
}
])