summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/runner_instructions/graphql/get_runner_platforms.query.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/vue_shared/components/runner_instructions/graphql/get_runner_platforms.query.graphql')
-rw-r--r--app/assets/javascripts/vue_shared/components/runner_instructions/graphql/get_runner_platforms.query.graphql14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/assets/javascripts/vue_shared/components/runner_instructions/graphql/get_runner_platforms.query.graphql b/app/assets/javascripts/vue_shared/components/runner_instructions/graphql/get_runner_platforms.query.graphql
new file mode 100644
index 00000000000..76f152e5453
--- /dev/null
+++ b/app/assets/javascripts/vue_shared/components/runner_instructions/graphql/get_runner_platforms.query.graphql
@@ -0,0 +1,14 @@
+query getRunnerPlatforms {
+ runnerPlatforms {
+ nodes {
+ name
+ humanReadableName
+ architectures {
+ nodes {
+ name
+ downloadLocation
+ }
+ }
+ }
+ }
+}