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

get_file_meta.graphql « queries « pipeline_wizard « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
        }
      }
    }
  }
}