tables_db_update_rows
Update multiple rows in an Appwrite database table by specifying queries and data fields to modify.
Instructions
Update all rows that match your queries, if no queries are submitted then all rows are updated. You can pass only specific fields to be updated.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| database_id | Yes | Database ID. | |
| table_id | Yes | Table ID. | |
| data | No | Row data as JSON object. Include only column and value pairs to be updated. | |
| queries | No | Array of query strings generated using the Query class provided by the SDK. [Learn more about queries](https://appwrite.io/docs/queries). Maximum of 100 queries are allowed, each 4096 characters long. | |
| transaction_id | No | Transaction ID for staging the operation. |