summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/runner/graphql/show/runner_jobs.query.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/runner/graphql/show/runner_jobs.query.graphql')
-rw-r--r--app/assets/javascripts/runner/graphql/show/runner_jobs.query.graphql36
1 files changed, 0 insertions, 36 deletions
diff --git a/app/assets/javascripts/runner/graphql/show/runner_jobs.query.graphql b/app/assets/javascripts/runner/graphql/show/runner_jobs.query.graphql
deleted file mode 100644
index 14585e62bf2..00000000000
--- a/app/assets/javascripts/runner/graphql/show/runner_jobs.query.graphql
+++ /dev/null
@@ -1,36 +0,0 @@
-#import "~/graphql_shared/fragments/page_info.fragment.graphql"
-
-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
- }
- }
- }
-}