Cloud Firestore is an auto-scaling real-time document database for storing, syncing, and querying data for mobile, web and server development.
I know that in Realtime Database I could get the push ID before it was added like this: DatabaseReference databaseReference= …
firebase google-cloud-platform google-cloud-firestoreI am trying to convert the below date to a javascript Date() object. When I get it back from the …
javascript firebase google-cloud-firestoreI want to query a firestore database for document id. Currently I have the following code: db.collection('books').where(…
javascript firebase google-cloud-firestoreBelow code works fine until today. But I don't know now it is not working and gives below error.Could …
angular typescript firebase ionic3 google-cloud-firestoreI want to retrieve data of only a single document via its ID. My approach with example data of: TESTID1 { …
firebase dart flutter google-cloud-firestore queryingDoes the new firestore database from firebase natively support location based geo queries? i.e. Find posts within 10 miles, or …
firebase google-cloud-firestoreSay I have this kind of structure A (collection): { a (doc): { name:'Tim', B (collection):{ b (doc): { color:'blue' } } } } where …
firebase google-cloud-firestoreIn Cloud Firestore there are three write operations: 1) add 2) set 3) update In the docs it says that using set(object, {…
database firebase google-cloud-firestoreThe documentation does not have any examples on how to add a subcollection to a document. I know how to …
java android ios firebase google-cloud-firestoreIs there a way to acquire the document id that was generated after adding a document to a collection? If …
firebase google-cloud-firestore