gitlab-org--gitlab-foss/app/assets/javascripts/vue_shared/components/runner_instructions/graphql/queries/get_runner_platforms.query....

21 lines
330 B
GraphQL
Raw Normal View History

query getRunnerPlatforms($projectPath: ID!, $groupPath: ID!) {
runnerPlatforms {
nodes {
name
humanReadableName
architectures {
nodes {
name
downloadLocation
}
}
}
}
project(fullPath: $projectPath) {
id
}
group(fullPath: $groupPath) {
id
}
}