debian-mirror-gitlab/app/assets/javascripts/runner/graphql/show/runner_jobs.query.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
713 B
GraphQL
Raw Normal View History

2022-06-21 17:19:12 +05:30
#import "~/graphql_shared/fragments/page_info.fragment.graphql"
2022-04-04 11:22:00 +05:30
query getRunnerJobs($id: CiRunnerID!, $first: Int, $last: Int, $before: String, $after: String) {
runner(id: $id) {
id
projectCount
jobs(before: $before, after: $after, first: $first, last: $last) {
nodes {
id
detailedStatus {
# fields for `<ci-badge>`
id
detailsPath
group
icon
text
}
pipeline {
id
project {
id
name
webUrl
}
}
shortSha
commitPath
tags
finishedAt
}
pageInfo {
...PageInfo
}
}
}
}