summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/components/labels/labels_select_widget/graphql/update_test_case_labels.mutation.graphql
blob: 9ff7ce64d3be51c6adec6d0e842b0ce49d3f9b79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#import "~/graphql_shared/fragments/author.fragment.graphql"
#import "~/graphql_shared/fragments/label.fragment.graphql"

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