summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/update_work_item.mutation.graphql
blob: efb1ed8d6dfcb259734e1ee0ffedc72243d3523b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#import './widget.fragment.graphql'

mutation workItemUpdate($input: WorkItemUpdateInput!) {
  workItemUpdate(input: $input) {
    workItem {
      id
      title
      workItemType {
        id
      }
      widgets @client {
        nodes {
          ...WidgetBase
        }
      }
    }
  }
}