DML operations
DML (Data Manipulation Language) operations allow you to insert, update, and delete data in a collection.
The following APIs are supported for DML operations.
| API | Description | Related document link |
|---|---|---|
add() | Inserts a new record into the collection. | Documentation |
update() | Updates an existing record in the collection. | Documentation |
upsert() | Inserts a new record or updates an existing record. | Documentation |
delete() | Deletes a record from the collection. | Documentation |