postgrest 0.0.1-dev.6 postgrest: ^0.0.1-dev.6 copied to clipboard
PostgREST client for Dart. This library provides an ORM interface to PostgREST.
import 'package:postgrest/postgrest.dart';
/// Example to use with Supabase API https://supabase.io/
void main(List<String> arguments) async {
var client = PostgrestClient('SUPABASE_API_ENDPOINT/rest/v1', {
'headers': {
'apikey': 'SUPABSE_API_KEY',
},
'schema': 'public'
});
final response = await client
.from('countries')
.select('*')
.order('name', {'ascending': true}).end();
if (response.status == 200) {
print('Countries List: ${response.body}.');
} else {
print('Request failed with status: ${response.status}.');
}
}