This repository was archived by the owner on May 1, 2025. It is now read-only.

Description
In the mongodb shell I get no results if I try to pass a query such as the following: { endret: { $gte: "2014-01-01T00:00:00.000Z" } }. However, this does work for me: { endret: { $gte: new ISODate("2014-01-01T00:00:00.000Z") } }. This also works from javascript: { endret: { $gte: new Date("2014-01-01T00:00:00.000Z") } }.
Is this an error or am I missing something? maybe something changed in newer mongodb versions?