Anda ingin menggunakan ekspresi majemuk di dalam {$cond:[]}
- sesuatu seperti:
collection.aggregate(
{
$match : {
'_id' : {$in:ids}
}
},
{
$group: {
_id: '$someField',
...
count: {$sum: { $cond: [ {$and : [ { $eq: [ "$otherField", false] },
{ $eq: [ "$anotherField","value"] }
] },
1,
0 ] }}
}
},
function(err, result){
...
}
);
$and
operator
didokumentasikan di sini:http://docs.mongodb.org/ manual/referensi/operator/agregasi/#boolean-operator