MONGO.DELETE
Stores data on a Mongo database. You can use the Function Wizard for this function.
Syntax
=MONGO.DELETE(Producer, Collection, QueryJSON, Target, [Timeout])
Arguments
Name | Description |
---|---|
Producer | Producer to use for deleting. The database name is configured in the affiliated Connector. |
Collection | Choose an existing collection, where the item is stored. |
QueryJSON | Define a query using a JSON cell range, which defines the object(s) to be deleted. |
Target | INBOX(), OUTBOX("MsgID") or a cell range where the result will be placed. Make sure the cell range is big enough or not everything is displayed. |
Timeout (optional) | Define Timeout. |
Return
TRUE, if no error.
Examples
Formula | Result | Comment |
---|---|---|
| TRUE | This deletes all documents in the database with the values from A1:B4 using the "Producer" in the collection "TestCollection". |