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

local_update_work_item.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: 790b8e60b6a7dacabe8418fa478c5b7c9f5ad500 (plain)
1
2
3
4
5
6
7
8
9
#import "ee_else_ce/work_items/graphql/work_item.fragment.graphql"

mutation localUpdateWorkItem($input: LocalUpdateWorkItemInput) {
  localUpdateWorkItem(input: $input) @client {
    workItem {
      ...WorkItem
    }
  }
}