mongodb
MongoDB: MongoDB is an open source NoSQL database management program.
Create New Document: Create a new document in a collection of your choice. See the docs here
Delete a Document: Delete a single document by ID. See the docs here
Execute Aggregation: Execute an aggregation pipeline on a MongoDB collection. See the documentation
Find Document: Finds a document by a query filter. See the documentation
Find Document by Id: Retrieves a single document by ID. See the docs here
Search Documents: Search for specific documents or return all documents. See the docs here
Update a Document: Updates a single document by ID. See the docs here
Update Documents: Updates many documents by query filter. See the documentation
Last updated
Was this helpful?