Hello, I Tested in playground one mutation for updated column in board , when i used graphql not working, my response request is undefined
mutation {
change_simple_column_value (board_id: 1320360345, item_id: 1338898345, column_id: "texto9", value: "dsfsdfsdfds") {
id
}
}
IDs Modificates
GraphQl with node.js
query = mutation ($board_id: Int!, $column_id: String!, $item_id: Int!, $column_value: String!) {
change_simple_column_value (board_id: $board_id, column_id: $column_id, item_id: $item_id, column_value: $column_value) {
id
}
}
variables {
board_id: 1320360345,
column_id: 'texto9',
item_id: 1338898345,
column_value: 'oioioioiio'
}
this.mondayApi.api(query, { variables });


