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

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: f0563f099b284d7cb9673f6ce7bcb3a592150608 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#import './widget.fragment.graphql'

mutation updateWorkItem($input: LocalUpdateWorkItemInput) {
  localUpdateWorkItem(input: $input) @client {
    workItem {
      id
      type
      widgets {
        nodes {
          ...WidgetBase
          ... on LocalTitleWidget {
            contentText
          }
        }
      }
    }
  }
}