Count algorithm to use to count rows in a table.
If true
, return the deleted row(s) in the response.
Performs an INSERT into the table.
The values to insert.
Performs vertical filtering with SELECT.
The columns to retrieve, separated by commas.
Count algorithm to use to count rows in a table.
When set to true, select will void data.
If there's an error with the query, throwOnError will reject the promise by throwing the error instead of returning it as part of a successful response.
Performs an UPDATE on the table.
The values to update.
Count algorithm to use to count rows in a table.
By default the updated record is returned. Set this to 'minimal' if you don't need this value.
Performs an UPSERT into the table.
The values to insert.
Count algorithm to use to count rows in a table.
Specifies if duplicate rows should be ignored and not inserted.
By specifying the on_conflict
query parameter, you can make UPSERT work on a column(s) that has a UNIQUE constraint.
By default the new record is returned. Set this to 'minimal' if you don't need this value.
Generated using TypeDoc
Performs a DELETE on the table.