Hi there!
Im trying to get a card and clear the value of a field using GraphQL. The field is not string or number, it is a pipe connector. I’m not trying to delete the relation field, just clearing it out.
I’m trying the following:
mutation { updateFieldsValues(input: {nodeId: "{cardId}", values: {fieldId: "{name}", value: [] }}) { clientMutationId } }
I have tryed usin “”
or [“”]
in the value but I got always an error sayin is an invalid input.
Have anyone did this before?