Welcome to mirror list, hosted at ThFree Co, Russian Federation.

epic_update_color.mutation.graphql « graphql « color_select_dropdown « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
  }
}