Mutations
/change_column_value
change_column_value
Change an item's column value.
Arguments
board_id
ID!
Required
The board's unique identifier.column_id
String!
Required
The column's unique identifier.create_labels_if_missing
Boolean
Create Status/Dropdown labels if they're missing. (Requires permission to change board structure)item_id
ID
The item's unique identifier.value
JSON!
Required
The new value of the column.
Returns
- Change an item's column value.
mutation change_column_value($board_id: ID!, $column_id: String!, $value: JSON!) { change_column_value(board_id: $board_id, column_id: $column_id, value: $value) { # change_column_value fields } }
Built with