Created
December 6, 2019 16:33
-
-
Save paulobunga/482b7c704d4f823d56f327f27d50cd31 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
'$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