gitlab-org--gitlab-foss/app/assets/javascripts/repository/queries/project_info.query.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
299 B
GraphQL
Raw Permalink Normal View History

#import "ee_else_ce/repository/queries/path_locks.fragment.graphql"
query getProjectInfo($projectPath: ID!) {
project(fullPath: $projectPath) {
id
userPermissions {
pushCode
downloadCode
createMergeRequestIn
forkProject
}
...ProjectPathLocksFragment
}
}