SupabaseQuery class

Constructors

SupabaseQuery()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

batchUpsert<T extends SupabaseObject>(List<Map<String, dynamic>> batchJson) Future<List<T>>
catchPostgrestError(PostgrestResponse response) → void
extractSupabaseList<T extends SupabaseObject>(PostgrestResponse response) List<T>
extractSupabaseSingleRow<T extends SupabaseObject>(PostgrestResponse response) → T
getAll<T extends SupabaseObject>({List<String> selectedColumns = const ['*']}) Future<List<T>>
getById<T extends SupabaseObject>(String id, {List<String> selectedColumns = const ['*']}) Future<T>