Mutations
/create_group
create_group
Creates a new group in a specific board.
Arguments
board_id
ID!
Required
The board's unique identifier.group_color
String
A hex representing the group's colorgroup_name
String!
Required
The name of the new group.position
String
The group's position in the board. DEPRECATED! Replaced with relative position (position_relative_method, relative_to)position_relative_method
PositionRelative
The position relative method to another group (before_at / after_at)relative_to
String
The group to set the position next to.
Returns
- Creates a new group in a specific board.
mutation create_group($board_id: ID!, $group_name: String!) { create_group(board_id: $board_id, group_name: $group_name) { # create_group fields } }
Built with