summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_wizard/queries/get_file_meta.graphql
blob: 87f014fade668a3907ba2bb13b1580c4342b4bed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
query GetFileMetadata($fullPath: ID!, $filePath: String!, $ref: String) {
  project(fullPath: $fullPath) {
    id
    repository {
      blobs(paths: [$filePath], ref: $ref) {
        nodes {
          id
        }
      }
    }
  }
}