Mutations
/create_column
create_column
Create a new column in board.
Arguments
after_column_idID
The column's unique identifier after which the new column will be inserted.board_idID!Required
The board's unique identifier.column_typeColumnType!Required
The type of column to create.defaultsJSON
The new column's defaults.descriptionString
The new column's description.idString
The column's user-specified unique identifier.titleString!Required
The new column's title.
Returns
- Create a new column in board.
mutation create_column($board_id: ID!, $column_type: ColumnType!, $title: String!) { create_column(board_id: $board_id, column_type: $column_type, title: $title) { # create_column fields } }
Built with