OBJECT

WorkItemMutation

Mutations that act on WorkItems.

link GraphQL Schema definition

  • type WorkItemMutation {
  • # Creates a new work item.
  • #
  • # Arguments
  • # work_item: The data to use for the creation
  • create(work_item: WorkItemCreate!): SuccessResult
  • # Update an existing work item
  • #
  • # Arguments
  • # work_item: Data to use for updating the work item
  • update(work_item: WorkItemUpdate!): SuccessResult
  • }