summaryrefslogtreecommitdiff
path: root/app/graphql/types/ci/runner_architecture_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/ci/runner_architecture_type.rb')
-rw-r--r--app/graphql/types/ci/runner_architecture_type.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/ci/runner_architecture_type.rb b/app/graphql/types/ci/runner_architecture_type.rb
index 229974d4d13..08d3f98592b 100644
--- a/app/graphql/types/ci/runner_architecture_type.rb
+++ b/app/graphql/types/ci/runner_architecture_type.rb
@@ -6,9 +6,9 @@ module Types
class RunnerArchitectureType < BaseObject
graphql_name 'RunnerArchitecture'
- field :name, GraphQL::STRING_TYPE, null: false,
+ field :name, GraphQL::Types::String, null: false,
description: 'Name of the runner platform architecture.'
- field :download_location, GraphQL::STRING_TYPE, null: false,
+ field :download_location, GraphQL::Types::String, null: false,
description: 'Download location for the runner for the platform architecture.'
end
end