Added the create_subitem
mutation which will create a new subitem under a specific parent item. See the create subitem mutation for more information.
Added the ability to mutate Connect columns. See the Connect column mutation for more information.
We added two mutations to let you add subscribers and remove subscribers from a board.
- Added the
add_subscribers_to_board
mutation which will add a single or an array of subscribers to a board. See the add subscribers to board mutation for more information. - Add the
delete_subscribers_from_board
mutation which will delete subscribers from a board. See the delete subscribers from board mutation for more information.
We changed exception handling to be better aligned with GraphQL specifications. The following exceptions will now return status code 200
instead of 400
. The error message will be in the “errors” key of the following responses:
InvalidBoardIdException
InvalidColumnIdException
ColumnValueException
ItemNameTooLongException
Boards
We added the views
field for boards
queries that will allow you to query board view attributes for a specific board. See the board views queries for more information.
We added the communication
field for boards queries that will return the Zoom call configuration for the board. See the boards queries fields for more information.
Columns
We added the pos
field for columns queries that will return the column's position on a given board. See the columns fields query for more information.
We added the activity_logs
queries that will show log events on a specific board. See the activity logs queries for more information.
We added the add_file_to_column
mutation that will add a local file to a specific column. See the add file to column mutation for more information.
We added the add_file_to_update
mutation that will add a local file to a specific update. See the add file to update mutation for more information.
We added the ability to clear the files in a File column. See the removing column values mutation for more information.