summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/change_work_item_parent_link.mutation.graphql
blob: dc5286174d83ef8dbd9f6c9ca8d1cb41af7fb3a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
mutation changeWorkItemParentLink($id: WorkItemID!, $parentId: WorkItemID) {
  workItemUpdate(input: { id: $id, hierarchyWidget: { parentId: $parentId } }) {
    workItem {
      id
      workItemType {
        id
      }
      title
      state
    }
    errors
  }
}