Skip to content

Instantly share code, notes, and snippets.

@Visrozar
Last active January 28, 2019 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Visrozar/5a5fd746b526eba67b22a8822c4f11ff to your computer and use it in GitHub Desktop.
Save Visrozar/5a5fd746b526eba67b22a8822c4f11ff to your computer and use it in GitHub Desktop.
db.collection.aggregate([
{
"$project": {
"_id": 1,
"product": 1,
"time": {
"$dateToString": {
"format": "%Y-%m-%d",
"date": "$time"
}
}
},
},
{
"$group": {
"_id": {
"time": "$time",
"product": "$product"
}
}
},
{
"$group": {
"_id": "$_id.time",
"count": {
"$sum": 1
}
}
}
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment