📜  在 ruby mongoid 中分组 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:22.235000             🧑  作者: Mango

代码示例1
Lead.where(client_id: client.id.to_s).collection.aggregate([{"$group"=>{ :_id=> "$sales_id" , :count=>{"$sum"=>1} } }, {"$match": { count: { "$gte": 3 } }} ]).to_a