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

project_info.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: 7a380d25bb1dd87c90a3d598b13c19013bae23b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#import "ee_else_ce/repository/queries/path_locks.fragment.graphql"

query getProjectInfo($projectPath: ID!) {
  project(fullPath: $projectPath) {
    id
    userPermissions {
      pushCode
      downloadCode
      createMergeRequestIn
      forkProject
    }
    ...ProjectPathLocksFragment
  }
}