Deletes a row by ID. Calls DELETE /api/v0/{table}/{id}.
Row identifier.
Inserts a new row. Calls POST /api/v0/{table}.
The row data to insert.
Fetches rows from the table. Calls GET /api/v0/{table}.
Optional key-value filters sent as query parameters.
Updates an existing row by ID. Calls PATCH /api/v0/{table}/{id}.
Row identifier.
Fields to update.
Fluent query builder for a single table. Created by DataModule.from. All methods return
{ data, error }.Example