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

epic_color.query.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: 959e0f8c1a501e1561c1b4f95152ef99c2741d64 (plain)
1
2
3
4
5
6
7
8
9
query epicColor($fullPath: ID!, $iid: ID) {
  workspace: group(fullPath: $fullPath) {
    id
    issuable: epic(iid: $iid) {
      id
      color
    }
  }
}