zhezhang77
zhezhang77
## Minimal code to reproduce the problem Create an empty document (no fields) in the firestore "test_col/test_doc" ```javascript const firestore = FirestoreApp.getFirestore(email, key, projectId); firestore.createDocument('test_col/test_doc', {}); var data = firestore.getDocument('test_col/test_doc');...
Fix #146 Unable to update nested fields with custome mask in updateDocument() 1. Add a flag 'nestedField' in updateDocument() to control if treating fields with dot notation as nested fields...
The custom mask is interpreted as a whole field name instead of the nested field name. Therefore there is no way to update a nested field with it. ## Minimal...