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

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

8 lines
157 B
GraphQL
Raw Normal View History

2022-07-23 23:45:48 +05:30
#import "ee_else_ce/runner/graphql/show/runner_details.fragment.graphql"
2022-07-16 23:28:13 +05:30
query getRunner($id: CiRunnerID!) {
runner(id: $id) {
2022-07-23 23:45:48 +05:30
...RunnerDetails
2022-07-16 23:28:13 +05:30
}
}