Add Object Data To Existing Firebase Document
I’m having problems finding the the right approach to adding new data to a Firebase document (using JavaScript) My document structure is as follows.. I want to be able to add a
Solution 1:
You can use FieldValue.arrayUnion() to add a new element to an array field of a document.
Post a Comment for "Add Object Data To Existing Firebase Document"