I have collection Ticket_master,which like as follows
Ticket_master
{
   _id:5e70ed53de0f7507d4da8dc2,
   "TICKET_NO" : 1000,
   "SUBJECT" : "Sub1",
   "DESCRIPTION" : "Desc1",
   "createdAt" : ISODate("2020-03-17T15:31:31.039Z"),
}
Already tried with the following code snippet and it returns null result set.
db.getCollection('ticket_masters').find({ 'createdAt':ISODate('2020-03-17T00:00:00.000Z')})
How fetch fetch data from ticket_master collection by matching the value with date of creation column,which is represented as createdAt.
Following code snippets return the results. Because it contain both date and time.How fetch data from the collection only with Date .
db.getCollection('ticket_masters').find({ 'createdAt':ISODate('2020-03-17T15:31:31.039+00:00')})
 
    