Skip to content

Instantly share code, notes, and snippets.

@maxday
Created July 6, 2018 10:33
Show Gist options
  • Save maxday/cdec4a29104dfe6d02aa78291fef7020 to your computer and use it in GitHub Desktop.
Save maxday/cdec4a29104dfe6d02aa78291fef7020 to your computer and use it in GitHub Desktop.
let groupQuery = [
{
$group: {
_id: { repo : "$repo", type: "$type" },
count: { $sum: 1 }
}
},
{
$sort: {
"count": -1
}
},
{
$match: {
count: { '$gte': 3 },
'_id.type' : 'WatchEvent'
}
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment