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