Error with the Monday module : Execute a GraphQL Query

Hi,
I am trying to update a connect_board column in Monday via the Execute a GraphQL Query module. I checked other discussions but I cannot seem to make it work in my account. I am sending this


mutation {change_multiple_column_values(item_id: 8830949548, board_id: 8829894931, column_values: “{“board_relation_mkpk3cmd” : {“item_ids” : [“8807669706”]}}”) {id}}

But I have apparently a parsing error that I don’t understand :

Can somebody help?
Thanks!

Okay I finally found the solution thanks to ChatGPT : A problem with the curly quotes and apparently quote in the wrong places.

The correct code if that can help someone :

mutation {
change_multiple_column_values(
item_id: 8830949548,
board_id: 8829894931,
column_values: “{"board_relation_mkpk3cmd" : {"item_ids" : [8807669706]}}”
) {
id
}
}

3 Likes

Hi @Fab_Rossini
Glad to know that you solved the issue.