如何将$ group条件置于$ match?

时间:2017-09-05 12:26:00

标签: mongodb mongoose

我在mongo中有简单的聚合查询:

    collection.aggregate([
        { 
            $match: { owner } 
        }, { 
            $group: { 
                _id: "$email" ,
                count: { $sum: 1 }
            }
        }
    ])

但在结果中我需要看到数量大于3的电子邮件。

我该怎么做?

0 个答案:

没有答案