skip to Main Content

Query to search specific nested list of JSON data in mongoDB using python

I have Docs in mongo DB in the following format - Here outerTimestamp is in string format and Price is int format { "_id":"ObjectId(""622f950e73043487031bb3ee"")", "outerTimeStamp" : "14-Mar-2022", "filtered":{ "data":[ { "Price":14350, "expiryDate":"17-Mar-2022", "info1":{ "Price":14350, "expiryDate":"17-Mar-2022", }, "info2":{ "Price":14350, "expiryDate":"17-Mar-2022" }…

VIEW QUESTION
Back To Top
Search