summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/runner_instructions/graphql/queries/get_runner_platforms.query.graphql
blob: 76f152e5453840faf301676216c2cd11c516c91e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query getRunnerPlatforms {
  runnerPlatforms {
    nodes {
      name
      humanReadableName
      architectures {
        nodes {
          name
          downloadLocation
        }
      }
    }
  }
}