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

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