Skip to content

Instantly share code, notes, and snippets.

@comfuture
Created December 22, 2014 08:53
Show Gist options
  • Save comfuture/b270dd13a86491e5c085 to your computer and use it in GitHub Desktop.
Save comfuture/b270dd13a86491e5c085 to your computer and use it in GitHub Desktop.
db.report.aggregate([
{'$match': {
'date': {'$gte': yesterday}
}},
{'$group': {
'_id': {
'$let': {
'vars': {
'local_date': {'$add': ['$date', 9 * 60 * 60 * 1000]}
},
'in': {
'year': {'$year': '$$local_date'},
'month': {'$month': '$$local_date'},
'day': {'$dayOfMonth': '$$local_date'},
'hour': {'$hour': '$$local_date'}
}
}
},
'value': {'$sum': 1}
}}
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment