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

Turn on admin in config.js to view server stats – Docker

After pulling run this commands "docker run -d -p 27017:27017 -e MONGO_INITDB_ROOT_USERNAME=admin -e MONGO_INITDB_ROOT_PASSWORD=password --name mongodb --net mongo-network mongo " for mongodb and this "docker run -d -p 8081:8081 -e ME_CONFIG_MONGODB_ADMINUSERNAME=admin -e ME_CONFIG_MONGODB_ADMINPASSWORD=password --net mongo-network --name mongo-express -e ME_CONFIG_MONGODB_SERVER=mongodb mongo-express"…

VIEW QUESTION
Back To Top
Search