Innerhalb der Aggregationspipeline können Sie für MongoDB Version 3.6 und höher die Verwendung von $arrayToObject
Operator und ein $replaceRoot
Pipeline, um die gewünschte JSON-Ausgabe zu erhalten. Dies funktioniert gut für unbekannte Werte des Anruffelds.
Sie müssten die folgende aggregierte Pipeline ausführen:
db.collection.aggregate([
{ "$group": {
"_id": {
"name": "$name",
"call": "$call"
},
"count": { "$sum": 1 }
} },
{ "$group": {
"_id": "$_id.name",
"counts": {
"$push": {
"k": "$_id.call",
"v": "$count"
}
},
"nameCount": { "$sum": 1 }
} },
{ "$replaceRoot": {
"newRoot": {
"$mergeObjects": [
{ "$arrayToObject": "$counts" },
"$$ROOT"
]
}
} },
{ "$project": { "counts": 0 } }
])
Nutzen Sie für frühere MongoDB-Versionen, die die oben genannten Operatoren nicht unterstützen, den $cond
Operator in $group
Schritt, um die Zählungen basierend auf dem bekannten call
auszuwerten Werte, etwa wie folgt:
db.collection.aggregate([
{ "$group": {
"_id": "$name",
"nameCount": { "$sum": 1 },
"Success Call": {
"$sum": {
"$cond": [ { "$eq": [ "$call", "Success Call" ] }, 1, 0]
}
},
"Repeat Call": {
"$sum": {
"$cond": [ { "$eq": [ "$call", "Repeat Call" ] }, 1, 0]
}
},
"Unsuccess Call": {
"$sum": {
"$cond": [ { "$eq": [ "$call", "Unsuccess Call" ] }, 1, 0]
}
}
} },
{ "$project": {
"_id": 0,
"name": "$_id",
"nameCount": 1,
"Success Call":1,
"Unsuccess Call":1,
"Repeat Call":1
} }
])