summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repository/queries/getFiles.graphql
blob: fb446780ed1ef20baa8386c830c0c9a59af7ff28 (plain)
1
2
3
4
5
6
7
query getFiles($path: String!, $ref: String!) {
  files(path: $path, ref: $ref) @client {
    id
    flatPath
    type
  }
}