summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/boards/graphql/issue_set_labels.mutation.graphql
blob: 70eb1dfbf7e7c8605798697d2edbfcab1974ea3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mutation issueSetLabels($input: UpdateIssueInput!) {
  updateIssue(input: $input) {
    issue {
      id
      labels {
        nodes {
          id
          title
          color
          description
        }
      }
    }
    errors
  }
}