Ik kwam erachter door de operators $addToSet en $unwind te gebruiken.
Mongodb Aggregatietelling array/setgrootte
db.collection.aggregate([
{
$group: { _id: { account: '$account' }, vendors: { $addToSet: '$vendor'} }
},
{
$unwind:"$vendors"
},
{
$group: { _id: "$_id", vendorCount: { $sum:1} }
}
]);
Ik hoop dat het iemand helpt