Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save juan-fdz-hawa/2d41b74e5af3f3033726caa7db63d9a6 to your computer and use it in GitHub Desktop.
Save juan-fdz-hawa/2d41b74e5af3f3033726caa7db63d9a6 to your computer and use it in GitHub Desktop.
{
$match: {
createdAt: {
$gte: fromDate.toISOString()
}
}
},
{
"$project" :
{
_id : 0,
"datePartDay" : {"$concat" : [
{"$substr" : [{"$dayOfMonth" : "$createdAt"}, 0, 2]}, "-",
{"$substr" : [{"$month" : "$createdAt"}, 0, 2]}, "-",
{"$substr" : [{"$year" : "$createdAt"}, 0, 4]}
] }
}
},
{
"$group" :
{ "_id" : "$datePartDay", "Count" : { "$sum" : 1 } }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment