summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_editor/graphql/queries/latest_commit_sha.query.graphql
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
      }
    }
  }
}