In an input json file i receive dates in this format:
{ "dt_received" : "2016-01-22T12:35:52.123+05" }
When loaded into MongoDB, those dates are stored this way:
dt_received: "2016-01-22T07:35:52.123Z"
The issue is that i need the timezone to calculate my indicator. In constraint, i can't create new columns such as "dt_received_timezone". So i'm looking for changing the date storage format into MongoDB in order to make the timezone appear (or at least not disapear) Is it a way to to this? Or any solution ?