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