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

blob_content.graphql « queries « graphql « pipeline_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f1b5b130889824633b42cf3c0317547a1261bb1 (plain)
1
2
3
4
5
query getBlobContent($projectPath: ID!, $path: String, $ref: String!) {
  blobContent(projectPath: $projectPath, path: $path, ref: $ref) @client {
    rawData
  }
}