select
inline suspend fun select(columns: Columns = Columns.ALL, request: SelectRequestBuilder.() -> Unit = {}): PostgrestResult(source)
Executes vertical filtering with select on table
Return
PostgrestResult which is either an error, an empty JsonArray or the data you requested as an JsonArray
Parameters
columns
The columns to retrieve, defaults to Columns.ALL. You can also use Columns.list, Columns.type or Columns.raw to specify the columns
request
Additional configurations for the request including filters
Throws
if receiving an error response
Http Request Timeout Exception
if the request timed out
Http Request Exception
on network related issues