summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/runner_instructions/graphql/queries/get_runner_platforms.query.graphql
blob: ff0626167a98fc108dfbb139d308b9f4a8531447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
query getRunnerPlatforms($projectPath: ID!, $groupPath: ID!) {
  runnerPlatforms {
    nodes {
      name
      humanReadableName
      architectures {
        nodes {
          name
          downloadLocation
        }
      }
    }
  }
  project(fullPath: $projectPath) {
    id
  }
  group(fullPath: $groupPath) {
    id
  }
}