Mutations
/
create_column

create_column

Create a new column in board.

Arguments

  • after_column_id
    ID
    The column's unique identifier after which the new column will be inserted.
  • board_id
    ID!
    Required
    The board's unique identifier.
  • column_type
    ColumnType!
    Required
    The type of column to create.
  • defaults
    JSON
    The new column's defaults.
  • description
    String
    The new column's description.
  • id
    String
    The column's user-specified unique identifier.
  • title
    String!
    Required
    The new column's title.

Returns

  • Column
    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
}
}
create_boardcreate_doc
Built with