Je hebt een extra $match
nodig
pijplijnstap die de inkomende documenten filtert op basis van het ingesloten veld "$productAttribute.colour"
bestaand en niet null:
db.productMetadata.aggregate([
{
"$match": {
"productAttribute.colour": {
"$exists": true,
"$ne": null
}
}
},
{
"$group": {
"_id": {
"color": "$productAttribute.colour",
"gender": "$productAttribute.gender"
},
"count": {
"$sum": 1
}
}
}
]);