I've constructed the query I want in the shell but am having trouble writing it in Mongoose.
db.commentstreams.group({ key: { page_id: true }, reduce: function(obj,prev) { prev.num_comments += obj.num_comments }, initial: { num_comments: 0 } })
I'm a bit confused by the Mongoose syntax; perhaps someone could shed some light on this one. Much thanks.