• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1query sha2pipelineIID($projectPath: ID!, $sha: String!) {
2  project(fullPath: $projectPath) {
3    pipelines(last: 1, sha:$sha){
4      nodes {
5        iid
6      }
7    }
8  }
9}
10