Искате да използвате съставен израз вътре в {$cond:[]}
- нещо като:
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
оператор
е документиран тук:http://docs.mongodb.org/ manual/reference/operator/aggregation/#boolean-operators