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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/queries/repository/path_last_commit.query.graphql')
-rw-r--r--app/graphql/queries/repository/path_last_commit.query.graphql4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/queries/repository/path_last_commit.query.graphql b/app/graphql/queries/repository/path_last_commit.query.graphql
index facbf1555fc..738fdf534cb 100644
--- a/app/graphql/queries/repository/path_last_commit.query.graphql
+++ b/app/graphql/queries/repository/path_last_commit.query.graphql
@@ -1,10 +1,10 @@
-query pathLastCommit($projectPath: ID!, $path: String, $ref: String!) {
+query pathLastCommit($projectPath: ID!, $path: String, $ref: String!, $refType: RefType) {
project(fullPath: $projectPath) {
__typename
id
repository {
__typename
- paginatedTree(path: $path, ref: $ref) {
+ paginatedTree(path: $path, ref: $ref, refType: $refType) {
__typename
nodes {
__typename