Skip to content

Instantly share code, notes, and snippets.

View Visrozar's full-sized avatar

Elvis Rozario Visrozar

View GitHub Profile
db.collection.aggregate([
{
"$project": {
"_id": 1,
"product": 1,
"day": {
"$dayOfMonth": "$time"
},
"month": {
"$month": "$time"
db.collection.aggregate([
{
"$project": {
"_id": 1,
"product": 1,
"time": {
"$dateToString": {
"format": "%Y-%m-%d",
"date": "$time"
}
db.collection.aggregate([
{
"$group": {
"_id": {
"$dateToString": {
"format": "%Y-%m-%d",
"date": "$time"
}
},
"count": {
db.collection.aggregate([
{
"$group": {
"_id": {
"date": {
$dateToString: {
format: "%Y-%m-%d",
date: "$time"
}
},