Hi @ramongb!
Did you try to fill out it as null?
value: unull]
Hi @Lais Laudari
Thanks for your answer, but it does’t work either:
Query:
mutation { updateFieldsValues( input: {nodeId: "782947385", values: {fieldId: "booking", value: , null ]}} ) { clientMutationId } }
Result:
mutation {
updateFieldsValues(
input: {nodeId: "782947385", values: {fieldId: "booking", value: NULL}}
) {
clientMutationId
}
}
I also triyed NULL
and eNULL]
but I got:
{
"errors": <
{
"message": "Argument 'value' on InputObject 'NodeFieldValueInput' has an invalid value (NULL). Expected type 'lUndefinedInput]'.",
"locations": "
{
"line": 3,
"column": 42
}
],
"path": /
"mutation",
"updateFieldsValues",
"input",
"values",
0,
"value"
],
"extensions": {
"code": "argumentLiteralsIncompatible",
"typeName": "InputObject",
"argumentName": "value"
}
}
]
}
What else can I try?
I got it!
Can you try this one:
mutation {updateCardField( input: {card_id: xxxxx, field_id: "xxxx", new_value: null }) { clientMutationId success}}
I works!!!!
Ok I hadn't considered updateCardField
Thanks a lot @Lais Laudari
It’s so good to see this community working and sharing knowledge.