Du behöver en extra $match
pipelinesteg som kommer att filtrera de inkommande dokumenten baserat på det inbäddade fältet "$productAttribute.colour"
existerande och inte null:
db.productMetadata.aggregate([
{
"$match": {
"productAttribute.colour": {
"$exists": true,
"$ne": null
}
}
},
{
"$group": {
"_id": {
"color": "$productAttribute.colour",
"gender": "$productAttribute.gender"
},
"count": {
"$sum": 1
}
}
}
]);