Here is what the structure of the initial collection looks like: I'm trying to retrieve all the documents within Messages, which has the custom ind ...
Here is what the structure of the initial collection looks like: I'm trying to retrieve all the documents within Messages, which has the custom ind ...
I have a question regarding how to do a full-text search on firestore. I have a simple app, which I wrote on react native. My app works fine, I have c ...
I'm trying to learn Firestore Cloud 9 using a tutorial written for Web version 8. I am stuck trying to refactor what appears to be a subcollection of ...
Last year Firestore introduced count queries, which allows you to retrieve the number of results in a query/collection without actually reading the in ...
I'm trying to retrieve data from Firestore with the code below, but I only get one result. When I eliminate that document, I get the other document wi ...
Using firebase-admin, I have several collections inside one collection. I need them all, so I need to to 4 different calls. The first one for the "use ...
I am following a tutorial and I am trying to save to Firestore a list of Favorite products (different from the tutorial). Items are being added but if ...
I'm fetching data from firebase which is structured in collection.subcollection.collection.document format. BREAKDOWN setTimeout is used since ...
I have a collection of objects that I want to retrieve. The objects have some date key:value pairs in them and I want to return all of those as a prop ...
Suppose I have the following Firestore data structure: collection tickets { name: "Testticket", open: true, users: [ "users/abcd ...
I create .env.local and have there a few variables, when I use one of them it returns undefined, it's just for one specific variable I tried to cha ...
I aim to insert the name in Firestore when the button is clicked, but I don't want the save to be pending if the user is not connected to the internet ...
I have two projects in Flutter (A, B), in project A I make the normal connection to Firebase and everything works fine, it brings data, sends data, up ...
I'm trying to send Expo push notifications to multiple devices. I'm retrieving the Expo tokens from Firestore. When I enter the tokens manually, it wo ...
How to make firebase accept a key that could be a null or a string ? and yet the field is optional, since in security rules you canot ceck if (is) is ...
I need to use multi WhereNotIn as conditions in fireStore. But fireStore only supplies single WhereNotIn. How to make it possible with multi conditi ...
I am trying to get a url property of a document by first running an if function to see whether another document has certain property ...
I am attempting to set experimentalForceLongPolling = true for Firestore settings. The reason for this is because without this, Firestore does not wo ...
I have below fireStore structure. It has diary collection and users collection. When I draw data from diary collection in my App, I want to check t ...
Please I have a history page on my flutter app that I want to work on and I have been thinking of a way to store the data correctly in my firestore so ...