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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/ci/runner/graphql/list/all_runners.query.graphql')
-rw-r--r--app/assets/javascripts/ci/runner/graphql/list/all_runners.query.graphql29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/assets/javascripts/ci/runner/graphql/list/all_runners.query.graphql b/app/assets/javascripts/ci/runner/graphql/list/all_runners.query.graphql
new file mode 100644
index 00000000000..15401c25c64
--- /dev/null
+++ b/app/assets/javascripts/ci/runner/graphql/list/all_runners.query.graphql
@@ -0,0 +1,29 @@
+#import "~/ci/runner/graphql/list/all_runners_connection.fragment.graphql"
+
+query getAllRunners(
+ $before: String
+ $after: String
+ $first: Int
+ $last: Int
+ $paused: Boolean
+ $status: CiRunnerStatus
+ $type: CiRunnerType
+ $tagList: [String!]
+ $search: String
+ $sort: CiRunnerSort
+) {
+ runners(
+ before: $before
+ after: $after
+ first: $first
+ last: $last
+ paused: $paused
+ status: $status
+ type: $type
+ tagList: $tagList
+ search: $search
+ sort: $sort
+ ) {
+ ...AllRunnersConnection
+ }
+}