-
sorry my bad English
is it necessary to delete the Document, always? or this is not the best option for my project. sorry my bad English |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@Pevalcar forgive me for taking so long to get back to you. I just checked our most recent release and It seems to be working fine in my code. As an example I am doing this _collection = Firebase.Firestore.collection('Firebasetester') In doing this I can see the updates online for the document. Is this similar to what you are doing? Can you post your code so we ca take a look at it? ~ Chuck |
Beta Was this translation helpful? Give feedback.
@Pevalcar forgive me for taking so long to get back to you. I just checked our most recent release and It seems to be working fine in my code. As an example I am doing this
_collection = Firebase.Firestore.collection('Firebasetester')
var add_task : FirestoreTask = _collection.add("Document2", {'name': 'Document2', 'active': 'true'})
var up_task : FirestoreTask = _collection.update("Document2", {'name': 'Document2', 'active': 'true', 'updated' : 'true'})
In doing this I can see the updates online for the document. Is this similar to what you are doing? Can you post your code so we ca take a look at it?
~ Chuck