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

get_jobs_count.query.graphql « queries « graphql « table « components « jobs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a4e02ae721a052ae1b6125fb3160587440d1947b (plain)
1
2
3
4
5
6
7
8
query getJobsCount($fullPath: ID!, $statuses: [CiJobStatus!]) {
  project(fullPath: $fullPath) {
    id
    jobs(statuses: $statuses) {
      count
    }
  }
}