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

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