MongoDBの$group-operatorの場合、値は値でもありません。
3つのキーすべてが存在しないドキュメントを除外する場合は、 $ match -これらすべてのキーを持たないドキュメントをフィルタリングする集約パイプラインにステップします。
db.collection.aggregate([
{ $match: {
"type" : { "$exists" : true},
"location" : { "$exists" : true},
"language" : { "$exists" : true}
}
},
{ $group: {
"_id": {
"location": "$location",
"type": "$typ",
"language": "$language"
},
"count": {$sum: 1}
}
}
]);