summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/color_select_dropdown/graphql/epic_update_color.mutation.graphql
blob: 2975b42253f0221c138e26c72fa3827f9521f701 (plain)
1
2
3
4
5
6
7
8
9
mutation updateEpicColor($input: UpdateEpicInput!) {
  updateIssuableColor: updateEpic(input: $input) {
    issuable: epic {
      id
      color
    }
    errors
  }
}