Dla $group-operatora MongoDB żadna wartość nie jest również wartością.
Jeśli chcesz wykluczyć dokumenty, w których nie ma wszystkich trzech kluczy, możesz dodać $dopasuj Przejdź do potoku agregacji, który filtruje wszystkie dokumenty, które nie mają wszystkich tych kluczy.
db.collection.aggregate([
{ $match: {
"type" : { "$exists" : true},
"location" : { "$exists" : true},
"language" : { "$exists" : true}
}
},
{ $group: {
"_id": {
"location": "$location",
"type": "$typ",
"language": "$language"
},
"count": {$sum: 1}
}
}
]);