di mongo versi 3.6 zona waktu telah ditambahkan, mongo doc
ekspresi untuk mengekstrak bagian tanggal dengan zona waktu adalah
{ date: <dateExpression>, timezone: <tzExpression> }
kita dapat menentukan zona waktu atau offset saat mendapatkan bagian tanggal
pipa
> 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}
... }}
... ])
hasil
{ "_id" : { "day" : 10, "month" : 7, "year" : 2015 }, "count" : 1 }
{ "_id" : { "day" : 11, "month" : 7, "year" : 2015 }, "count" : 2 }
>
daftar zona waktu