Skip to content

Instantly share code, notes, and snippets.

@Visrozar
Last active January 28, 2019 17:08
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/85b66109f642a261540533b884615343 to your computer and use it in GitHub Desktop.
Save Visrozar/85b66109f642a261540533b884615343 to your computer and use it in GitHub Desktop.
db.collection.aggregate([
{
"$group": {
"_id": {
"$dateToString": {
"format": "%Y-%m-%d",
"date": "$time"
}
},
"count": {
"$addToSet": "$product"
}
}
},
{
$addFields: {
"count": {
"$size": "$count"
}
}
}
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment