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

update_work_item_widgets.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: 148b340b439d85b67b49eb2fb9f1b57252ebfcc4 (plain)
1
2
3
4
5
6
7
8
9
10
#import "./work_item.fragment.graphql"

mutation workItemUpdateWidgets($input: WorkItemUpdateWidgetsInput!) {
  workItemUpdateWidgets(input: $input) {
    workItem {
      ...WorkItem
    }
    errors
  }
}