I am attempting to update a people column, with relevant teams to the user in the column.
The mutation in the API playground appears to by syntactically correct, but returns a 500 error. I am very much a novice in this arena still and can’t seem to sort this out. The query is as follows:
mutation {
change_column_value(
board_id: 11111111111111111
item_id: 22222222222
column_id: “multiple_person1”
value: {personsAndTeams: [ {id: 12345, kind: “team”}, {id: 678910, kind: “team”}]}
) {
id
}
}
Any help would be appreciated.