Skip to content

Instantly share code, notes, and snippets.

@peterzawistowicz
Created May 27, 2015 21:12
Show Gist options
  • Save peterzawistowicz/7d822d2e590dd4313399 to your computer and use it in GitHub Desktop.
Save peterzawistowicz/7d822d2e590dd4313399 to your computer and use it in GitHub Desktop.
db.activities.aggregate(([
{ $match: { userId: "u123", ts: { $gt: DATE }}}, // get a time bound set of activities for a user
{ $group: { _id: "$type", count: { $sum: 1 }}}]) // group and sum the results by activity type
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment