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

issue_set_labels.mutation.graphql « graphql « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9c5d74437112475d6bb66c8b4170e45c9075b25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import "~/graphql_shared/fragments/label.fragment.graphql"

mutation issueSetLabels($input: UpdateIssueInput!) {
  updateIssuableLabels: updateIssue(input: $input) {
    issuable: issue {
      id
      labels {
        nodes {
          ...Label
        }
      }
    }
    errors
  }
}