11 lines
204 B
GraphQL
11 lines
204 B
GraphQL
query getPermissions($projectPath: ID!) {
|
|
project(fullPath: $projectPath) {
|
|
__typename
|
|
userPermissions {
|
|
__typename
|
|
pushCode
|
|
forkProject
|
|
createMergeRequestIn
|
|
}
|
|
}
|
|
}
|