| Convert Object ID | The Object ID is a unique identifier for a document in a MongoDB collection. This action takes either a string ID or Object ID object, and returns both the ObjectID '_id' and stringified ID versions of the ID which can be used in subsequent actions. |
| Delete Many | Remove documents from a collection that match a query. |
| Find All | Retrieve all documents in a collection that match a query. |
| Find One | Retrieve one document in a collection that match a query. If no document is found, an error is thrown. |
| Insert Many | Insert new documents into a collection |
| Insert One | Insert a new document into a collection |
| Update One | Update a single document in a collection |
| Update Many | Update multiple documents in a collection |
| Raw Request | Execute database commands directly. Does not use collection from connection. |
| Aggregate | Performs an aggregation operation using the provided aggregation pipeline. |