Navigation
Mobile DocsNavigation
Mobile DocsConnect and interact with MongoDB databases
Query, insert, update, and delete documents in MongoDB collections with support for complex queries and aggregations.
Placeholder: mongodb://username:password@host:port/database
Layout: full
Placeholder: Enter database name
Layout: half
Placeholder: Enter collection name
Layout: half
Layout: full
Options: Find Documents, Find One Document, Insert One Document, Insert Many Documents
Placeholder: { "field": "value" }
Layout: full
Condition: operation = ["find","findOne","updateOne","updateMany","deleteOne","deleteMany","count"]
Placeholder: { "field1": "value1", "field2": "value2" }
Layout: full
Condition: operation = ["insertOne"]
Placeholder: [ { "field1": "value1" }, { "field1": "value2" } ]
Layout: full
Condition: operation = ["insertMany"]
Placeholder: { "$set": { "field": "new value" } }
Layout: full
Condition: operation = ["updateOne","updateMany"]
Placeholder: { "sort": { "field": 1 }, "limit": 10, "skip": 0 }
Layout: full
Condition: operation = ["find"]
Placeholder: [ { "$match": { "field": "value" } }, { "$group": { "_id": "$field", "count": { "$sum": 1 } } } ]
Layout: full
Condition: operation = ["aggregate"]
Required
Required
Required
Required
Optional
Optional
Optional
Optional
Optional
Optional
Primary response type:
{
"success": "boolean",
"result": "json",
"count": "number",
"error": "string"
}