Breaking change: Required `column_type` argument for `create_column` mutation

The column_type argument will be required for the create_column mutation in API version 2023-10. You can pass one of the enum values listed here to create a specific type of column.

Sample mutation

mutation{
  create_column(board_id: 1234567890, title: "Country", description: "This is my country column", column_type:country) {
    id
    title
    description
  }
}