faunadb_http 0.13.4 copy "faunadb_http: ^0.13.4" to clipboard
faunadb_http: ^0.13.4 copied to clipboard

A pure Dart implementation of a FaunaDB client and provides query classes that closely mimic FQL functions.

example/main.dart

import 'package:faunadb_http/faunadb_http.dart';
import 'package:faunadb_http/query.dart';

/*
* FaunaDB secret should be the first argument
* `dart ./main.dart <your_secret_here>`
* */
void main(List<String> arguments) async {
  final config = FaunaConfig.build(
    secret: arguments[0],
  );
  // Or if you want to put your secret straight in your code
  // final config = FaunaDBConfig.build(secret: '<your_secret_here>');
  final client = FaunaClient(config);

  final query = Paginate(Collections());
  print('query=>\n$query');

  final response = await client.query(query);
  if (response.hasErrors) {
    print('error=>\n${response.errors}');
  } else {
    print('response=>\n${response.resource}');
  }

  client.close();
}
53
likes
110
pub points
27%
popularity

Publisher

verified publishergavans.work

A pure Dart implementation of a FaunaDB client and provides query classes that closely mimic FQL functions.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

http, json_annotation

More

Packages that depend on faunadb_http