Skip to content

Instantly share code, notes, and snippets.

@ahachete
Created November 30, 2016 11:04
Show Gist options
  • Save ahachete/ec3a3397765e9f60ded41a50e7f1d026 to your computer and use it in GitHub Desktop.
Save ahachete/ec3a3397765e9f60ded41a50e7f1d026 to your computer and use it in GitHub Desktop.
db.events.aggregate(
[
{ $match: {
$and: [ { type: "IssuesEvent"} , { "payload.action" : "opened" } ] }
},
{ $group: { _id: "$repo.name", total: { $sum: 1 } } },
{ $sort: { total: -1 } }
],
{ allowDiskUse: true, cursor: { batchSize: 100000000 } }
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment