summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/graphql/issue_set_labels.mutation.graphql
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
  }
}