cosmosdb 0.0.1-prerelease copy "cosmosdb: ^0.0.1-prerelease" to clipboard
cosmosdb: ^0.0.1-prerelease copied to clipboard

outdated

CosmosDB SQL-API client for Flutter

cosmosdb #

codecov build pub package pub points

This projects offers an API client to interact with the CosmosDB SQL-API in Dart. This project is an early state and not considered stable.

Getting Started #

The database can be accessed via the CosmosDB client:

import 'package:cosmosdb/cosmosdb.dart';

void main() {
    final cosmosDB = CosmosDB(
      masterKey: '<YOUR_MASTER_KEY>',
      baseUrl: '<YOUR_BASE_URL>',
    );
    // get all documents from a collection
    final documents = cosmosDB.documents.list('<YOUR_DATABASE>', '<YOUR_COLLECTION>');
    print(documents);
}
4
likes
0
pub points
53%
popularity

Publisher

verified publisherjonasfranz.de

CosmosDB SQL-API client for Flutter

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

crypto, http

More

Packages that depend on cosmosdb