Você deseja usar uma expressão composta dentro de
{$cond:[]}
- algo como:collection.aggregate(
{
$match : {
'_id' : {$in:ids}
}
},
{
$group: {
_id: '$someField',
...
count: {$sum: { $cond: [ {$and : [ { $eq: [ "$otherField", false] },
{ $eq: [ "$anotherField","value"] }
] },
1,
0 ] }}
}
},
function(err, result){
...
}
);
O
$and
operador
está documentado aqui:http://docs.mongodb.org/ manual/reference/operator/aggregation/#boolean-operators