Welcome to mirror list, hosted at ThFree Co, Russian Federation.

permissions.query.graphql « queries « repository « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 092fa44e2d0c657f288eefdd5ab9476f87776e51 (plain)
1
2
3
4
5
6
7
8
9
query getPermissions($projectPath: ID!) {
  project(fullPath: $projectPath) {
    userPermissions {
      pushCode
      forkProject
      createMergeRequestIn
    }
  }
}