Delete Row
delete_rowSoft-delete a row from a v2 app's collection. Recoverable: the row is tombstoned, not destroyed, and restore_row brings it back for 30 days (see list_deleted_rows). A watcher sees the deletion live as op:delete on the change feed. Pass if_match for an optimistic-locked delete. Returns { deleted: true }.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | The key of the row to delete. | |
| app_id | Yes | The app id. | |
| if_match | No | Optional optimistic-lock version. | |
| collection | Yes | The collection name. |