L'ho capito usando gli operatori $addToSet e $unwind.
Dimensione dell'array/set di conteggio aggregazione Mongodb
db.collection.aggregate([
{
$group: { _id: { account: '$account' }, vendors: { $addToSet: '$vendor'} }
},
{
$unwind:"$vendors"
},
{
$group: { _id: "$_id", vendorCount: { $sum:1} }
}
]);
Spero che aiuti qualcuno