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

epic_reference.query.graphql « queries « sidebar « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f35ca896ef85e01ea0f7c7077596313cfd6679c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
query epicReference($fullPath: ID!, $iid: ID) {
  workspace: group(fullPath: $fullPath) {
    __typename
    id
    issuable: epic(iid: $iid) {
      __typename
      id
      reference(full: true)
    }
  }
}