We added the duplicate_item mutation method which will duplicate a single item at a time. See the duplicate items mutation for more information.
Added the delete_update mutation method which will delete an existing update. See the delete an update mutation for more information.
We added the create_workspace mutation method which will create a new workspace. See the create a workspace mutation for more information.
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_boardmutation 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_boardmutation 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:
InvalidBoardIdExceptionInvalidColumnIdExceptionColumnValueExceptionItemNameTooLongException
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.
