Home > database >  Accesssing Firebase Firestore from a script
Accesssing Firebase Firestore from a script

Time:03-09

I have a flutter Andriod app that can be used to store data in the firestore. Now I want to access that stored data from a Dart script to perform some operations on the data.

How can I access the firestore with a Dart script?

Updated the question: Looking only for dart package/library to access firebase firestore.

CodePudding user response:

The Firebase docs provides good help with how to set up environment and a lot of examples.

CodePudding user response:

It is possible with firedart.

import 'package:firedart/firedart.dart';

String pi = 'example-app';

void main(List<String> arguments) async {
  Firestore.initialize(pi);
  var map = await Firestore.instance.collection("users").get();
  print(map);
}
  • Related