Commit f8ce40e9 authored by Phil Hughes's avatar Phil Hughes

Merge branch '338420-add-missing-ids' into 'master'

Add missing GraphQL ids

See merge request gitlab-org/gitlab!68948
parents 203638a4 2ca888d7
...@@ -23,6 +23,7 @@ query getFiles( ...@@ -23,6 +23,7 @@ query getFiles(
$nextPageCursor: String $nextPageCursor: String
) { ) {
project(fullPath: $projectPath) { project(fullPath: $projectPath) {
id
__typename __typename
repository { repository {
__typename __typename
......
query pathLastCommit($projectPath: ID!, $path: String, $ref: String!) { query pathLastCommit($projectPath: ID!, $path: String, $ref: String!) {
project(fullPath: $projectPath) { project(fullPath: $projectPath) {
id
__typename __typename
repository { repository {
__typename __typename
......
query getPermissions($projectPath: ID!) { query getPermissions($projectPath: ID!) {
project(fullPath: $projectPath) { project(fullPath: $projectPath) {
id
__typename __typename
userPermissions { userPermissions {
__typename __typename
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment