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