summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/runner_instructions/graphql/queries/get_runner_setup.query.graphql
blob: 643c19918073fb6fa00c8879f066c704672a554f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query runnerSetupInstructions(
  $platform: String!
  $architecture: String!
  $projectId: ID!
  $groupId: ID!
) {
  runnerSetup(
    platform: $platform
    architecture: $architecture
    projectId: $projectId
    groupId: $groupId
  ) {
    installInstructions
    registerInstructions
  }
}