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

runner_architecture_type.rb « ci « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 526348abd9d415c07ecb78b526cc596b4c55bd21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Types
  module Ci
    # rubocop: disable Graphql/AuthorizeTypes
    class RunnerArchitectureType < BaseObject
      graphql_name 'RunnerArchitecture'

      field :name, GraphQL::STRING_TYPE, null: false,
        description: 'Name of the runner platform architecture'
      field :download_location, GraphQL::STRING_TYPE, null: false,
        description: 'Download location for the runner for the platform architecture'
    end
  end
end