Cloud Firestore is an auto-scaling real-time document database for storing, syncing, and querying data for mobile, web and server development.
I'm just exploring the new Firebase Firestore and it contains a data type called reference. It is not clear to …
javascript firebase google-cloud-firestoreI thought I read that you can query subcollections with the new Firebase Firestore, but I don't see any examples. …
firebase google-cloud-firestoreAfter authenticating i'm trying to lookup a user document at /users/, then i'd like to update the document with data …
firebase google-cloud-firestoreIs there any chance to add a document to firestore collection with custom generated id, not the id generated by …
javascript firebase google-cloud-firestoreThis works: db.collection('users').doc('id').get() .then((docSnapshot) => { if (docSnapshot.exists) { db.collection('users').doc('id') .onSnapshot((…
javascript google-cloud-firestoreWhen I try to initialize Firebase Cloud Firestore, I ran into the following error: Uncaught TypeError: WEBPACK_IMPORTED_MODULE_0_firebase.…
javascript firebase google-cloud-firestoreI am looking to add a simple search field, would like to use something like collectionRef.where('name', 'contains', 'searchTerm') …
firebase google-cloud-firestoreI am considering using Firebase as MBaaS, however I couldn't find any reliable solution to the following problem: I would …
firebase google-cloud-firestore production-environment mbaasI have a snippet of code which I copied from Firestore example: Widget _buildBody(BuildContext context) { return new StreamBuilder( stream: _…
firebase flutter dart google-cloud-firestoreI am getting an error when attempting to write to Firestore. I am attempting to use a field containing the …
firebase firebase-security google-cloud-firestore