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