Sets the AbortSignal for the fetch request.
Finds all rows whose json, array, or range value on the stated column
is
contained by the specified value
.
The column to filter on.
The value to filter with.
Finds all rows whose json, array, or range value on the stated column
contains the values specified in value
.
The column to filter on.
The value to filter with.
Set the response type to CSV.
Finds all rows whose value on the stated column
exactly matches the
specified value
.
The column to filter on.
The value to filter with.
Obtains the EXPLAIN plan for this request.
If true
, the query will be executed and the actual run time will be displayed.
If true
, include information on buffer usage.
If true
, include information on configuration parameters that affect query planning.
If true
, the query identifier will be displayed and the result will include the output columns of the query.
If true
, include information on WAL record generation
Finds all rows whose column
satisfies the filter.
The column to filter on.
The operator to filter with.
The value to filter with.
Finds all rows whose tsvector value on the stated column
matches
to_tsquery(query
).
The column to filter on.
The Postgres tsquery string to filter with.
The text search configuration to use.
Set the response type to GeoJSON.
Finds all rows whose value on the stated column
is greater than the
specified value
.
The column to filter on.
The value to filter with.
Finds all rows whose value on the stated column
is greater than or
equal to the specified value
.
The column to filter on.
The value to filter with.
Finds all rows whose value in the stated column
matches the supplied
pattern
(case insensitive).
The column to filter on.
The pattern to filter with.
Finds all rows whose value on the stated column
is found on the
specified values
.
The column to filter on.
The values to filter with.
A check for exact equality (null, true, false), finds all rows whose
value on the stated column
exactly match the specified value
.
The column to filter on.
The value to filter with.
Finds all rows whose value in the stated column
matches the supplied
pattern
(case sensitive).
The column to filter on.
The pattern to filter with.
Limits the result with the specified count
.
The maximum no. of rows to limit to.
The foreign table to use (for foreign columns).
Finds all rows whose value on the stated column
is less than the
specified value
.
The column to filter on.
The value to filter with.
Finds all rows whose value on the stated column
is less than or equal
to the specified value
.
The column to filter on.
The value to filter with.
Finds all rows whose columns match the specified query
object.
The object to filter with, with column names as keys mapped to their filter values.
Retrieves at most one row from the result. Result must be at most one row
(e.g. using eq
on a UNIQUE column), otherwise this will result in an
error.
Finds all rows whose value on the stated column
doesn't match the
specified value
.
The column to filter on.
The value to filter with.
Finds all rows which doesn't satisfy the filter.
The column to filter on.
The operator to filter with.
The value to filter with.
Finds all rows satisfying at least one of the filters.
The filters to use, separated by commas.
The foreign table to use (if column
is a foreign column).
Orders the result with the specified column
.
The column to order on.
If true
, the result will be in ascending order.
The foreign table to use (if column
is a foreign column).
If true
, null
s appear first.
Finds all rows whose array or range value on the stated column
overlaps
(has a value in common) with the specified value
.
The column to filter on.
The value to filter with.
Finds all rows whose tsvector value on the stated column
matches
phraseto_tsquery(query
).
The column to filter on.
The Postgres tsquery string to filter with.
The text search configuration to use.
Finds all rows whose tsvector value on the stated column
matches
plainto_tsquery(query
).
The column to filter on.
The Postgres tsquery string to filter with.
The text search configuration to use.
Limits the result to rows within the specified range, inclusive.
The starting index from which to limit the result, inclusive.
The last index to which to limit the result, inclusive.
The foreign table to use (for foreign columns).
Finds all rows whose range value on the stated column
is adjacent to
the specified range
.
The column to filter on.
The range to filter with.
Finds all rows whose range value on the stated column
is strictly to
the right of the specified range
.
The column to filter on.
The range to filter with.
Finds all rows whose range value on the stated column
does not extend
to the left of the specified range
.
The column to filter on.
The range to filter with.
Finds all rows whose range value on the stated column
is strictly to the
left of the specified range
.
The column to filter on.
The range to filter with.
Finds all rows whose range value on the stated column
does not extend
to the right of the specified range
.
The column to filter on.
The range to filter with.
Performs vertical filtering with SELECT.
The columns to retrieve, separated by commas.
Retrieves only one row from the result. Result must be one row (e.g. using
limit
), otherwise this will result in an error.
Finds all rows whose text or tsvector value on the stated column
matches
the tsquery in query
.
The column to filter on.
The Postgres tsquery string to filter with.
The text search configuration to use.
The type of tsquery conversion to use on query
.
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.
Finds all rows whose tsvector value on the stated column
matches
websearch_to_tsquery(query
).
The column to filter on.
The Postgres tsquery string to filter with.
The text search configuration to use.
Generated using TypeDoc
Use
rangeAdjacent()
instead.