blob: 26a6a1bc7e43598a860995d9618184f29dc7a2f8 [file] [log] [blame]
{
"tests": [
{
"description": "update: Delete",
"comment": "If a field's value is the Delete sentinel, then it doesn't appear\nin the update data, but does in the mask.",
"update": {
"docRefPath": "projects/projectID/databases/(default)/documents/C/d",
"jsonData": "{\"a\": 1, \"b\": \"Delete\"}",
"request": {
"database": "projects/projectID/databases/(default)",
"writes": [
{
"update": {
"name": "projects/projectID/databases/(default)/documents/C/d",
"fields": {
"a": {
"integerValue": "1"
}
}
},
"updateMask": {
"fieldPaths": [
"a",
"b"
]
},
"currentDocument": {
"exists": true
}
}
]
}
}
}
]
}