PostgrestTransformBuilder<T> class

Inheritance
Implementers

Properties

body ↔ dynamic
getter/setter pairinherited
hashCode int
The hash code for this object.
no setterinherited
headers Map<String, String>
finalinherited
httpClient → Client?
finalinherited
maybeEmpty bool
getter/setter pairinherited
method String?
getter/setter pairinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
schema String?
finalinherited
url Uri
getter/setter pairinherited

Methods

appendSearchParams(String key, String value) → void
Update Uri queryParameters with new key:value Use lists to allow multiple values for the same key
inherited
csv() PostgrestTransformBuilder
Retrieves the response as CSV. This will skip object parsing.
execute({bool head = false, CountOption? count}) Future<PostgrestResponse>
Sends the request and returns a Future. catch any error and returns with status 500
inherited
limit(int count, {String? foreignTable}) PostgrestTransformBuilder
Limits the result with the specified count.
maybeSingle() PostgrestTransformBuilder
Retrieves at most one row from the result.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
order(String column, {bool ascending = false, bool nullsFirst = false, String? foreignTable}) PostgrestTransformBuilder
Orders the result with the specified column.
overrideSearchParams(String key, String value) → void
Overrides Uri queryParameters with new key:value
inherited
range(int from, int to, {String? foreignTable}) PostgrestTransformBuilder
Limits the result to rows within the specified range, inclusive.
select([String columns = '*']) PostgrestTransformBuilder
Performs horizontal filtering with SELECT.
single() PostgrestTransformBuilder
Retrieves only one row from the result.
toString() String
A string representation of this object.
inherited
withConverter<S>(PostgrestConverter<S> converter) PostgrestBuilder<S>
Converts any response that comes from the server into a type-safe response.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited