Mutations
/
create_item

create_item

Create a new item.

Arguments

  • board_id
    ID!
    Required
    The board's unique identifier.
  • column_values
    JSON
    The column values of the new item.
  • create_labels_if_missing
    Boolean
    Create Status/Dropdown labels if they're missing. (Requires permission to change board structure)
  • group_id
    String
    The group's unique identifier.
  • item_name
    String!
    Required
    The new item's name.
  • position_relative_method
    PositionRelative
    The position relative method to another item (before_at / after_at)
  • relative_to
    ID
    The item to set the position next to.

Returns

  • Item
    Create a new item.
mutation create_item($board_id: ID!, $item_name: String!) {
create_item(board_id: $board_id, item_name: $item_name) {
# create_item fields
}
}
create_groupcreate_notification
Built with