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

outdated

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 = CreateCollection(Obj({'name': 'users'}));
  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
0
pub points
17%
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

License

unknown (LICENSE)

Dependencies

http, json_annotation

More

Packages that depend on faunadb_http