API – Mutations
Mutations provide write access to schema-defined data.
Characteristics
- Write rules are enforced
- Classifications are evaluated during execution
- Fully transactional per request
Create Row (add_<entity>)
Creates a new row in the target table.
Example – Create Person
Update Row (edit_<entity>)
Edits an existing row identified by id or _id.
Example – Update by id
Example – Update by _id
Delete Row (delete_<entity>)
Deletes an existing row identified by id or _id.
Example – Delete by id
Example – Delete by _id
Relation Mutation
Relation mutations are performed through nested inputs using the _action field.
They are documented separately in API – Relationship Editing.