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

epic_confidential.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: 4998b2af666294adb58b6ee0771ed32f7e914d01 (plain)
1
2
3
4
5
6
7
8
9
10
11
query epicConfidential($fullPath: ID!, $iid: ID) {
  workspace: group(fullPath: $fullPath) {
    __typename
    id
    issuable: epic(iid: $iid) {
      __typename
      id
      confidential
    }
  }
}