postgrest 2.4.0 copy "postgrest: ^2.4.0" to clipboard
postgrest: ^2.4.0 copied to clipboard

PostgREST client for Dart. This library provides an ORM interface to PostgREST.

example/main.dart

import 'package:postgrest/postgrest.dart';

/// Example to use with Supabase API https://supabase.io/
dynamic main() async {
  const supabaseUrl = '';
  const supabaseKey = '';
  final client = PostgrestClient(
    '$supabaseUrl/rest/v1',
    headers: {'apikey': supabaseKey},
    schema: 'public',
  );
  try {
    final response = await client.from('countries').select();
    print(response);
  } on PostgrestException catch (e) {
    // handle PostgrestError
    print(e.code);
    print(e.message);
  }
}
117
likes
160
points
115k
downloads

Publisher

verified publishersupabase.io

Weekly Downloads

PostgREST client for Dart. This library provides an ORM interface to PostgREST.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

http, logging, meta, yet_another_json_isolate

More

Packages that depend on postgrest