YuvAIR
YuvAIR
Ok, so after some research I found out that if you include some field in the mask, but not in the actual body of an `updateDocument` request, it deletes that...
It actually does have a direct method to delete a specific field, take a look at my #143, only one API call and you can delete whichever fields you want...
Can you take a look at my pull request then? It's a really small fix which adds a pretty important feature.
Hmmm I don't think this would be ideal, as sometimes you want to both update and delete fields at the same time. However, I do have another idea which would...
Ok, so say you create a document as follows: ```javascript const original = { field1: "value 1", field2: "value 2", field3: "value 3, }; firestore.createDocument(path, original); ``` And then, you...
Should I then add this to the pull request as well?