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