标签: mongodb sails.js waterline
我希望通过子句
Collection.find({a: b}).groupBy('c.d').sum('total').exec(function(err, res){ console.log(res) })
返回 [{total: 0}]
[{total: 0}]
如果我使用groupBy('c')执行相同的查询,则返回结果,但我想在c.d上分组
groupBy('c')
c.d