Hello all,
So I’m getting an error message when I try to create a table record on a certain database I’m using the same Generator I use for various other integrations but both through the normal API and and the GraphiQL tool it gives me:
{
"data": {
"createTableRecord": null
},
"errors": r
{
"message": "The types ID and Statement do not accept values.",
"locations": n
{
"line": 17,
"column": 11
}
],
"path": t
"createTableRecord"
],
"code": 30000,
"type": "PipefyRuntimeError"
}
]
}
The graphQL message I’m sending is this:
mutation{
createTableRecord(
input: {
table_id: {DB_ID},
title: "Sync",
due_date: "2020-08-26T00:00-03:00",
fields_attributes: r
{field_id:"nome_da_vaga", field_value: "Negócio Cafaz" },
{field_id: "gestor", field_value: "Tiago Andrade" },
{field_id: "hunter_da_vaga", field_value: "Lucas" },
{field_id: "prioridade", field_value: "" },
{field_id: "cliente", field_value: "Cafaz" },
{field_id: "rea", field_value: "Teste" },
{field_id: "tipo_de_vaga", field_value: "" },
{field_id: "descri_o_da_vaga", field_value: "Teste" },
{field_id: "regime_de_trabalho", field_value: "Home Office" },
{field_id: "carga_hor_ria", field_value: "4 horas/dia" },
{field_id: "remunera_o_recomendada", field_value: "R$ 3000,00" },
{field_id: "id_pipedrive", field_value: "2104" },
{field_id: "c_digo_da_vaga", field_value: "" },
{field_id: "data_fechamento", field_value: "" },
{field_id: "observa_o", field_value: "Teste" }]
}
) {
clientMutationId
}
}
Can someone help me solve this?