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

latest_commit_sha.query.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: 219c23bb22bb931fdebf33c947d5042ca256e4a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
query getLatestCommitSha($projectPath: ID!, $ref: String) {
  project(fullPath: $projectPath) {
    pipelines(ref: $ref) {
      nodes {
        id
        sha
        path
        commitPath
      }
    }
  }
}