11 lines
205 B
GraphQL
11 lines
205 B
GraphQL
|
query issueConfidential($fullPath: ID!, $iid: String) {
|
||
|
workspace: project(fullPath: $fullPath) {
|
||
|
__typename
|
||
|
issuable: issue(iid: $iid) {
|
||
|
__typename
|
||
|
id
|
||
|
confidential
|
||
|
}
|
||
|
}
|
||
|
}
|