I have a mongo collection like this :
Collection :rResponse
{
"_id" : ("59c8248 "),
"correlationId" : ("b92b3 "),
"rtResponse" : {
"rTiming" : {
"servicetime" : "2020-04-17 11:50:42.1053555 (GMT-04:00)"
}
I Was trying to use find query to access service time.
db.rResponsee.rtResponse.rTiming.find( { servicetime: '2020-05-01 08:25:58.4083775 (GMT-04:00)' } );
But it returns 0 rows. Any help/advice will be greatly appreciated.