I always get the error when I try to change data with the Monday SDK:
"message": "Parse error on \\": \\" (STRING) at [3, 111]",
Here is the code I used:
const setErrors = await monday.api(`
mutation {
change_multiple_column_values(item_id: ${id}, board_id: ${process.env.BOARD_ID}, column_values: \\"{ \\"pt_errors0\\": \\"0\\ }\\") {
id
}
}
`);