Greetings!
I’m trying to use the api version 2 of your plataform, and i’m receiving the following error:
Syntax Error GraphQL request (1:105) Expected :, found String “: {”
I’m using python version 3.6 with gql module.
This occurs when i try a mutation in a board.
Here is the query:
query = gql(“”" mutation {change_multiple_column_values (board_id: XXXXXXXX , item_id: XXXXXXX, column_values: “{“dma2”: {"index": "teste"}}”) {id}} “”")
The query to select data is ok when i test with the same module and script.
Could you please help-me with this problem?