我在mongo中有简单的聚合查询:
collection.aggregate([
{
$match: { owner }
}, {
$group: {
_id: "$email" ,
count: { $sum: 1 }
}
}
])
但在结果中我需要看到数量大于3的电子邮件。
我该怎么做?