summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/queries/epic_confidential.query.graphql
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
    }
  }
}