Skip to content

Instantly share code, notes, and snippets.

@Visrozar
Created January 28, 2019 17:08
Show Gist options
  • Save Visrozar/542abcf66799c6b845304ee376be7c91 to your computer and use it in GitHub Desktop.
Save Visrozar/542abcf66799c6b845304ee376be7c91 to your computer and use it in GitHub Desktop.
db.collection.aggregate([
{
"$group": {
"_id": {
"date": {
$dateToString: {
format: "%Y-%m-%d",
date: "$time"
}
},
"product": "$product"
}
}
},
{
"$group": {
"_id": "$_id.date",
"count": {
"$sum": 1
}
}
}
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment