Commit 2ca888d7 authored by jerasmus's avatar jerasmus

Add missing graphQL ids

Adds missing ids to avoid caching issues

Changelog: fixed
parent b50ffcb5
...@@ -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