Pipefy - Execute GraphQl Query - updateFieldsValues

I want to change some card fields on Pipefy using module “Execute GraphQl Query”. Some fields are number type fields and anothers are text fields. the problem is two of them, coincidentally the fields that are NUMBERS type, are returning with the message “field not found”. Anyone can help me?

mutation {
updateFieldsValues(input: {
nodeId: 1097512534
values: [
{ fieldId: “nome” value: “Gilberto” },
{ fieldId: “telefone” value: “65999730296” },
{ fieldId: “data_de_nascimento” value: “20/02/1983” },
{ fieldId: “nome_contato_emergencia” value: “Ana” },
{ fieldId: “telefone_contato_emergencia” value: “65999834949” },
{ fieldId: “vinculo_contato_emergencia” value: “Outros” },
]
}) {
success
userErrors { field message }
updatedNode {
… on Card {
id
fields {
name
value
}
}
}
}
}