Potrzebujesz dodatkowego $match
krok potoku, który filtruje przychodzące dokumenty na podstawie osadzonego pola "$productAttribute.colour"
istniejące i nie zerowe:
db.productMetadata.aggregate([
{
"$match": {
"productAttribute.colour": {
"$exists": true,
"$ne": null
}
}
},
{
"$group": {
"_id": {
"color": "$productAttribute.colour",
"gender": "$productAttribute.gender"
},
"count": {
"$sum": 1
}
}
}
]);