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

get_runner_platforms.query.graphql « queries « graphql « runner_instructions « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
  }
}