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: 2c9013ffa9c98d2c7f56401dee4b480bba18ae30 (plain)
1
2
3
4
5
6
7
8
9
query getUserPermissions($projectPath: ID!) {
  project(fullPath: $projectPath) {
    userPermissions {
      createMergeRequestIn,
      readMergeRequest,
      pushCode
    }
  }
}