skip to Main Content

Why this query works in MongoDB?

For instance, I have this JSON inject { "insert": "2023-12-08T09:49:00" } It is String I have sent this query here db.example.find({ "insert" : { "$gt" : "2023-12-08T09:48:00.000Z", "$lt" : "2023-12-08T10:23:38" } }) How is possible that it works? I couldn't…

VIEW QUESTION
Back To Top
Search