Hi.
I am trying to update a column value using the following query:
mutation {change_column_value (board_id: #######, item_id: #######, column_id: \\"text\\", value: \\"hello\\") {name}}
And creating a new item with given values using the following query:
mutation {create_item (board_id: ########, item_name: \\"New Item\\", column_values: \\"{\\\\\\'text\\\\\\': \\\\\\'hello\\\\\\'}\\") {id}}
However I get Internal Server Error (500).
What is the problem with these queries?
Note:
- A column with the id ‘text’ does exist in the board
- I have no problem creating an item with empty column_values (just {}), nor any problem in reading board contents.
- The stringified JSON (the arg of column_values) is generated automatically by str(dict).
Thanks!