以下のようにクエリしたいのですが、これには$cond
が1つしか含まれていません。
2つの$cond
でクエリする方法は?
collection.aggregate(
{
$match : {
'_id' : {$in:ids}
}
},
{
$group: {
_id: '$someField',
...
count: {$sum: { $cond: [ { $eq: [ "$otherField", false] } , 1, 0 ] }}
}
},
function(err, result){
...
}
);
{$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