Oct 08, 2019 08:49 AM
I have a table/records with a computed column/fields (using a lookup function) - let’s call this field/column F0.
I would like to PATCH the table by changing the values of field F1 and leave everything else as is.
However, when I send the request I obtain the following error
{
"error": {
"type": "INVALID_VALUE_FOR_COLUMN",
"message": "Field \"F0\" cannot accept a value because the field is computed"
}
}
Any guidance would be appreciated!
Solved! Go to Solution.
Oct 08, 2019 11:45 AM
Perhaps rhetorical, but a PATCH is designed to be non-destructive, ergo - only F1 would be updated, right? If F1 is not a calculated field, you should be able to update it without mentioning F0 at all, right?
Am I missing something?
Oct 08, 2019 11:45 AM
Perhaps rhetorical, but a PATCH is designed to be non-destructive, ergo - only F1 would be updated, right? If F1 is not a calculated field, you should be able to update it without mentioning F0 at all, right?
Am I missing something?