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

getFiles.graphql « queries « repository « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ceaf67ea82f45a701d0d81ab76547c2bf296d9c (plain)
1
2
3
4
5
6
7
8
query getFiles($path: String!, $ref: String!) {
  files(path: $path, ref: $ref) @client {
    id
    name
    fullPath
    type
  }
}