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

get_pipeline_failed_jobs_count.query.graphql « queries « graphql « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b70e95deab653e49e4b1c2963107f5051d7184f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
query getPipelineFailedJobsCount($fullPath: ID!, $pipelineIid: ID!) {
  project(fullPath: $fullPath) {
    id
    pipeline(iid: $pipelineIid) {
      id
      active
      jobs(statuses: [FAILED], retried: false, jobKind: BUILD) {
        count
      }
    }
  }
}