Skip to content

Instantly share code, notes, and snippets.

@pvoznenko
Created September 11, 2014 05:37
Show Gist options
  • Save pvoznenko/65d2ceec13a28127af82 to your computer and use it in GitHub Desktop.
Save pvoznenko/65d2ceec13a28127af82 to your computer and use it in GitHub Desktop.
hw5.1
db.posts.aggregate([{$unwind:"$comments"}, {$group: {_id:"$comments.author", count: { $sum: 1 }}}, {"$sort": {"count": -1}}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment