DeleteFromTable
Description
description: |
Delete rows from table `id`.
Request Schema
DeleteFromTableRequest:
type: object
description: |
Delete data from table based on a SQL predicate.
Returns the number of rows that were deleted.
required:
- predicate
properties:
id:
type: array
items:
type: string
description: The namespace identifier
predicate:
type: string
description: SQL predicate to filter rows for deletion
Response Schema
DeleteFromTableResponse:
type: object
required:
- version
properties:
version:
type: integer
format: int64
description: The commit version associated with the operation
minimum: 0