SupabaseQuery class
Constructors
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< batchJson) → Future<String, dynamic> >List< T> > -
catchSupabaseException(
Object error, StackTrace stacktrace) → void -
extractSupabaseList<
T extends SupabaseObject> (List< Map< response) → List<String, dynamic> >T> - Extracts a list of SupabaseObjects from a response. If some records could not be extracted, ExtractionFailedException is thrown containing the extracted records and the faulty records.
-
extractSupabaseSingleRow<
T extends SupabaseObject> (Map< String, dynamic> 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>