debian-mirror-gitlab/app/graphql/queries/repository/permissions.query.graphql

12 lines
204 B
GraphQL
Raw Normal View History

2019-09-30 21:07:59 +05:30
query getPermissions($projectPath: ID!) {
project(fullPath: $projectPath) {
2021-01-29 00:20:46 +05:30
__typename
2019-09-30 21:07:59 +05:30
userPermissions {
2021-01-29 00:20:46 +05:30
__typename
2019-09-30 21:07:59 +05:30
pushCode
forkProject
createMergeRequestIn
}
}
}