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

update_merge_request_labels.mutation.graphql « queries « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c09daad793f3d88525da0769e085423f75cb093 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mutation mergeRequestSetLabels($input: MergeRequestSetLabelsInput!) {
  mergeRequestSetLabels(input: $input) {
    errors
    mergeRequest {
      labels {
        nodes {
          color
          description
          id
          title
        }
      }
    }
  }
}