-
set with merge will update fields in the document or create it if it doesn't existsupdate will update fields but will fail if the document doesn't existWouldn't it be much easier to always use set ......
-
What are the general limits, if any, of a very large frequently used collection (loads of writes and reads to the collection at the same time) in firestore?Say you have an app where a user can scroll ......
-
I'm setting data in Firestore using below method in Android Kotlin,data class UserModel(val userName:String = "",val createdAt:Long = 0L)val userModel = UserModel("Name Here",......
-
Imagine you store a bunch of activities in a collection. Some users can choose whether or not to participate in a given activity. If a user decides to participate in an activity a document in a ......
-
This is an architectural question.I am currently in the process of designing a web application and I am used to a basic: frontend, api, database, microservices setup.For the sake of saving money and ......
-
I'm trying to model in Purescript the SetOptions data type from Firestore.Up to now I have the followingforeign import data FieldPath :: Typeforeign import buildFieldPath :: Array String -> ......
-
https://github.com/wix/corvid-external-db-firestore-adapterI am following this guide and could not connect to Wix: (All steps should be correct)But I get this on wix editor:Unable to fetch result (......
-
When using StreamBuilder with Firestore collection snapshots, does the Stream read ALL the documents of the collection the first time, or does it internally implement some sort of "throttling&......
-
Currently I am facing some issues with firebase data retrieving on android my project to be more specific. The problem is retrieving image from firebase storage and also storing data on firebase cloud ......
-
Are there anyways to get firestore database trigger callbacks when using Cloud Run?Currently there are options for getting Audio log events but didn't find a way to get firestore update/create/delete ......
-
I was very kindly helped to allow my picker to select a value from my Firestore database. What I would like to do is once that value is selected in my picker I would like to be able to show that value ......
-
I am running queries on Firestore from Firebase Functions. Everything works fine when I run the function from a local shell.However, after I deploy the code and call the function, Firestore is ......
-
I am trying to use a DispatchQueue to update my UI, so when Firebase authenticates a user I can pass the newly created data to the next screen.I have a SignUpView that signs up a user and then goes ......
-
I hope this is still programming related, as SuperUser doesn't seem the appropriate place.Im developing an app (its already working with a simple json backend) for my company (we are just 2 guys) on ......
-
I read the Get realtime updates with Cloud Firestore and wonder if I can listen for changes on a Document value or I must listen for changes to the Document (all values)Lets say I have a Document:{ ......