I’m trying to update items in C# via api calls, but my query is not working, it returns a 500 Internal Server Error, Version: 1.1, but it works in the play ground:
{“query”: “mutation {change_multiple_column_values(item_id: 5720531888, board_id: 5720522778, column_values: “{"name":"Name changed","people":{"personsAndTeams":A{"id":"42575577","kind":"person"}]},"status":{"index":1},"numbers":"10"}” ){id} }”}
This the mutation that works in the play ground the exact mutation, which is not working it code, the values and format are all the same so they are correct:
mutation worksHere {change_multiple_column_values(item_id: 5720531888, board_id: 5720522778, column_values: “{"name":"Name changed","people":{"personsAndTeams":e{"id":"42575577","kind":"person"}]},"status":{"index":1},"numbers":"10"}” ){id} }
By the way, I am able to udpate the board in code, add_users_to_board or delete_subscribers_from_board and that works, including updating description and board name.
Looking forward to getting this working, thanks in advance for your help.