datastore 0.1.2 copy "datastore: ^0.1.2" to clipboard
datastore: ^0.1.2 copied to clipboard

discontinued
outdated

Enables developers to use document databases and information retrieval systems. Various adapters are available in this and other packages.

example/example.dart

import 'package:datastore/datastore.dart';

void main() async {
  // Choose a datastore
  final datastore = Datastore.defaultInstance;

  // Search
  final response = await datastore.collection('people').search(
        query: Query.parse(
          '"software developer" (dart OR javascript)',
          take: 10,
        ),
      );

  // Print results
  for (var snapshot in response.snapshots) {
    print('Employee ID: ${snapshot.document.documentId}');
    print('Employee name: ${snapshot.data['name']}');
    print('');
  }
}
0
likes
0
pub points
0%
popularity

Publisher

verified publisherdint.dev

Enables developers to use document databases and information retrieval systems. Various adapters are available in this and other packages.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

charcode, collection, firebase, fixnum, googleapis, googleapis_auth, grpc, http, meta, protobuf, universal_html, universal_io

More

Packages that depend on datastore