summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pipeline_editor/graphql/queries/latest_commit_sha.query.graphql
blob: d62fda402379dcf28423a5c697abf6943c5bbc01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
query getLatestCommitSha($projectPath: ID!, $ref: String) {
  project(fullPath: $projectPath) {
    id
    repository {
      tree(ref: $ref) {
        lastCommit {
          id
          sha
        }
      }
    }
  }
}