skip to Main Content

Load a single data from a document in mongoDB

How can I find only the "hotels" property? Data in MongoDB- [ { "picture": "https://d.bcb.ic/dKkqr2da/lalkhal.jpg", "name": "Lalakhal", "about": "Lalakhal is....", "latitude": 25.1048, "longitude": 92.1770, "hotels": [{}, {}, {}] }, { "picture": "https://d.bcb.ic/dKkqr2da/lalkhal.jpg", "name": "Lalakhal", "about": "Lalakhal is....", "latitude": 25.1048, "longitude":…

VIEW QUESTION

How can I insert json string to MongoDB?

I have a json string. Like this: "{"http_requests":[{"http_requests":{"code":"400","method":"PUT","value":89}},{"http_requests":{"code":"200","method":"PUT","value":45}}]}" I want to insert this json to mongodb. But I have error in my code. The error is "cannot transform type string to a BSON Document: WriteString can only write while positioned…

VIEW QUESTION
Back To Top
Search