I have the following set of document info in my collection and how to get one document with a particular timestamp?
As this timestamp is in ISODate(), how to pass the same from my pyMongodb client?
[ { "_id" : ObjectId("5f64658a64b79fed80b8e4df"), "time" : ISODate("2020-09-18T13:15:14.290Z"), "details" : "with all details", "type" : "general", "payLoad" : { "myname" : "nameofme", } }, { "_id" : ObjectId("5f64658a64b79fed80b8e4df"), "time" : ISODate("2020-09-18T13:18:20.290Z"), "details" : "with all details", "type" : "general", "payLoad" : { "myname" : "nameofme", } }, { "_id" : ObjectId("5f64658a64b79fed80b8e4df"), "time" : ISODate("2020-09-18T13:50:20.290Z"), "details" : "with all details", "type" : "general", "payLoad" : { "myname" : "nameofme", } } ]