datastore 0.1.3 datastore: ^0.1.3 copied to clipboard
Enables developers to use document databases and information retrieval systems. Various adapters are available in this and other packages.
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('');
}
}