Skip to content

Instantly share code, notes, and snippets.

@paulobunga
Created December 6, 2019 16:33
Show Gist options
  • Save paulobunga/482b7c704d4f823d56f327f27d50cd31 to your computer and use it in GitHub Desktop.
Save paulobunga/482b7c704d4f823d56f327f27d50cd31 to your computer and use it in GitHub Desktop.
[
{
'$match': {
'createdAt': {
'$gte': new Date('Fri, 01 Nov 2019 00:00:00 GMT'),
'$lte': new Date('Sun, 01 Dec 2019 00:00:00 GMT')
}
}
}, {
'$group': {
'_id': {
'$week': '$createdAt'
},
'items': {
'$push': {
'startTime': '$startTime',
'endTime': '$endTime'
}
}
}
}, {
'$sort': {
'createdAt': 1
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment