Welcome to mirror list, hosted at ThFree Co, Russian Federation.

update_work_item_task.mutation.graphql « graphql « work_items « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad861a60d1509dda0dc1d42559f9b6eaf9715be2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "./work_item.fragment.graphql"

mutation workItemUpdateTask($input: WorkItemUpdateTaskInput!) {
  workItemUpdate: workItemUpdateTask(input: $input) {
    workItem {
      id
      descriptionHtml
    }
    task {
      ...WorkItem
    }
  }
}