system.mongodb
MongoDB Functions
The following functions allow users to interact with a MongoDB instance. These functions require the MongoDB connector.
📄️ aggregate
Returns a list of aggregate results.
📄️ deleteMany
Removes documents from the collection that match the filter.
📄️ deleteOne
Removes a document from the collection that matches the filter.
📄️ find
Returns a list of PyDictionaries that matches the criteria specified on the filter parameter.
📄️ findOne
Returns a single PyDictionary that matches the criteria specified on the filter parameter.
📄️ insertMany
Inserts a list of PyDictionaries into a specified collection.
📄️ insertOne
Inserts a single PyDictionary into a specified collection.
📄️ listCollectionNames
Returns a list of all collection names.
📄️ listConnectorInfo
Returns a list of PyDictionary descriptors of all MongoDB Connectors.
📄️ replaceOne
Replaces a document in the collection that matches the filter.
📄️ updateMany
Updates all documents in the collection that match the filter.
📄️ updateOne
Updates a document in the collection that matches the filter.