13 lines
230 B
GraphQL
13 lines
230 B
GraphQL
query permissions($fullPath: ID!, $iid: String!) {
|
|
project(fullPath: $fullPath) {
|
|
__typename
|
|
id
|
|
issue(iid: $iid) {
|
|
__typename
|
|
userPermissions {
|
|
__typename
|
|
createDesign
|
|
}
|
|
}
|
|
}
|
|
}
|