debian-mirror-gitlab/app/assets/javascripts/sidebar/queries/epic_confidential.query.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
172 B
GraphQL
Raw Normal View History

2021-04-17 20:07:23 +05:30
query epicConfidential($fullPath: ID!, $iid: ID) {
workspace: group(fullPath: $fullPath) {
2022-01-26 12:08:38 +05:30
id
2021-04-17 20:07:23 +05:30
issuable: epic(iid: $iid) {
id
confidential
}
}
}