summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/sidebar/labels_select_widget/graphql/epic_update_labels.mutation.graphql
blob: 45fcb50732ee8c4eb1984767c1004f0598a6de93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import "~/graphql_shared/fragments/label.fragment.graphql"

mutation updateEpicLabels($input: UpdateEpicInput!) {
  updateEpic(input: $input) {
    epic {
      id
      labels {
        nodes {
          ...Label
        }
      }
    }
    errors
  }
}