Mutations
/create_group
create_group
Creates a new group in a specific board.
Arguments
board_idID!Required
The board's unique identifier.group_colorString
A hex representing the group's colorgroup_nameString!Required
The name of the new group.positionString
The group's position in the board. DEPRECATED! Replaced with relative position (position_relative_method, relative_to)position_relative_methodPositionRelative
The position relative method to another group (before_at / after_at)relative_toString
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