Inden for aggregeringspipelinen, for MongoDB version 3.6 og nyere, kan du udnytte brugen af $arrayToObject
operatør og en $replaceRoot
pipeline for at få det ønskede JSON-output. Dette fungerer godt for ukendte værdier i opkaldsfeltet.
Du skal køre følgende samlede pipeline:
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 } }
])
For tidligere MongoDB-versioner, som ikke understøtter ovenstående operatører, skal du udnytte $cond
operatør i $group
trin for at evaluere tællingerne baseret på det kendte opkald
værdier, noget i stil med følgende:
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
} }
])