Dovresti prima usare $unwind che restituisce un documento per ogni elemento nell'array.
db.books.aggregate([
{
$unwind : "$categories"
},
{
$group : { _id : "$categories", total: { $sum: 1 } }
}
])
Dovresti prima usare $unwind che restituisce un documento per ogni elemento nell'array.
db.books.aggregate([
{
$unwind : "$categories"
},
{
$group : { _id : "$categories", total: { $sum: 1 } }
}
])