blob: ad79e6aa1da6aed1a795abe83674974a8eb631b0 [file] [log] [blame] [edit]
{
"tests": [
{
"description": "update-paths: ArrayRemove with data",
"comment": "A key with ArrayRemove is removed from the fields in the update \noperation. Instead it appears in update transforms.",
"updatePaths": {
"docRefPath": "projects/projectID/databases/(default)/documents/C/d",
"fieldPaths": [
{
"field": [
"a"
]
},
{
"field": [
"b"
]
}
],
"jsonValues": [
"1",
"[\"ArrayRemove\", 1, 2, 3]"
],
"request": {
"database": "projects/projectID/databases/(default)",
"writes": [
{
"update": {
"name": "projects/projectID/databases/(default)/documents/C/d",
"fields": {
"a": {
"integerValue": "1"
}
}
},
"updateMask": {
"fieldPaths": [
"a"
]
},
"updateTransforms": [
{
"fieldPath": "b",
"removeAllFromArray": {
"values": [
{
"integerValue": "1"
},
{
"integerValue": "2"
},
{
"integerValue": "3"
}
]
}
}
],
"currentDocument": {
"exists": true
}
}
]
}
}
}
]
}