in mongo versione 3.6 è stato aggiunto il fuso orario, mongo doc
l'espressione per estrarre la parte della data con il fuso orario è
{ date: <dateExpression>, timezone: <tzExpression> }
possiamo specificare il fuso orario o l'offset mentre otteniamo le parti della data
pipeline
> db.txs.aggregate([
... { $group:{
... _id: {
... day: {$dayOfMonth: {date :"$date", timezone : "Europe/Rome"}}, // timezone
... month: {$month: {date : "$date", timezone : "+02:00"}}, //offset
... year: {$year: {date : "$date", timezone : "+02:00"}} //offset
... },
... count:{$sum:1}
... }}
... ])
risultato
{ "_id" : { "day" : 10, "month" : 7, "year" : 2015 }, "count" : 1 }
{ "_id" : { "day" : 11, "month" : 7, "year" : 2015 }, "count" : 2 }
>
elenco dei fusi orari