I have a Mongo collection with 'DateAdded' in ISODate format
{ "_id" : 4098199, "DateAdded" : ISODate("2018-08-31T05:06:13.150Z") } so it is 1hour off then local datetime
LocalDatetime is 2018-08-31 06:06:13 +01:00 UTC is 2018-08-31T05:06:13.150Z Using following query when i try to get records added after 2018-08-31 06:00:00 i m not getting this records as it is in UTC
db.getCollection('User').find({"DateAdded":{$gte: new ISODate('2018-08-31T6:00:00Z')}}) How to convert UTC date while doing search on date field in MongoDB?