Bạn cần thêm $match
bước đường ống sẽ lọc các tài liệu đến dựa trên trường được nhúng "$productAttribute.colour"
hiện có và không rỗng:
db.productMetadata.aggregate([
{
"$match": {
"productAttribute.colour": {
"$exists": true,
"$ne": null
}
}
},
{
"$group": {
"_id": {
"color": "$productAttribute.colour",
"gender": "$productAttribute.gender"
},
"count": {
"$sum": 1
}
}
}
]);