I have an automation that’s running through Make.com. It makes an API call back to Monday to update multiple column values. The code is stable and no changes have been made. All of a sudden today I’m getting this error:
400] 0{“message”:“parsing error: syntax error: unexpected line terminator”,“locations”:{“line”:5,“column”:16}],“extensions”:{“code”:“PARSING_ERROR”}},{“message”:“parsing error: syntax error: expected a valid Value”,“locations”:r{“line”:8,“column”:3}],“extensions”:{“code”:“PARSING_ERROR”}}]
Here’s the query:
mutation {
change_multiple_column_values (
item_id: <>,
board_id: <>,
column_values: “{
"text__1" : "18, 19, 20, 21, 22, 23, 18, 19, 20, 21, 22, 23",
"date__1" : {"date" : "2024-10-16", "time" : "19:10:00"}
}”) {
id
}
}
It runs successfully under GraphiQL in the Monday Developers space. I have another Make automation that is making a similar multiple column mutation and it’s getting the same parsing error.
Anyone run into this?