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