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:
authorPhil Hughes <me@iamphill.com>2019-05-21 16:26:18 +0300
committerPhil Hughes <me@iamphill.com>2019-05-21 16:26:18 +0300
commit5ddedb6b8bf3f47c400e3d38e415462abefa3b50 (patch)
treef458e8cedf8d9be1a0b95804f22c0e7f4bcfb862 /app/assets/javascripts/repository/queries/getFiles.graphql
parent729bac5e1643eb47e97ed1b9e2a90868cdbb2382 (diff)
Added tree list row component
Diffstat (limited to 'app/assets/javascripts/repository/queries/getFiles.graphql')
-rw-r--r--app/assets/javascripts/repository/queries/getFiles.graphql3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/assets/javascripts/repository/queries/getFiles.graphql b/app/assets/javascripts/repository/queries/getFiles.graphql
index 5ceaf67ea82..fb446780ed1 100644
--- a/app/assets/javascripts/repository/queries/getFiles.graphql
+++ b/app/assets/javascripts/repository/queries/getFiles.graphql
@@ -1,8 +1,7 @@
query getFiles($path: String!, $ref: String!) {
files(path: $path, ref: $ref) @client {
id
- name
- fullPath
+ flatPath
type
}
}