summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/repository/queries/blob_controls.query.graphql
blob: fc1cf5f254b52233dc4550de42bc762a36699932 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query getBlobControls($projectPath: ID!, $filePath: String!, $ref: String!) {
  project(fullPath: $projectPath) {
    id
    repository {
      blobs(paths: [$filePath], ref: $ref) {
        nodes {
          id
          findFilePath
          blamePath
          historyPath
          permalinkPath
          storedExternally
          externalStorage
        }
      }
    }
  }
}