tables_db_delete_rows
Delete multiple rows from an Appwrite database table using queries. Remove all rows if no queries are specified, with support for bulk operations and transaction staging.
Instructions
Bulk delete rows using queries, if no queries are passed then all rows are deleted.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| database_id | Yes | Database ID. | |
| table_id | Yes | Table ID. You can create a new table using the Database service [server integration](https://appwrite.io/docs/references/cloud/server-dart/tablesDB#createTable). | |
| 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. |