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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/terraform/state_version_type.rb')
-rw-r--r--app/graphql/types/terraform/state_version_type.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/graphql/types/terraform/state_version_type.rb b/app/graphql/types/terraform/state_version_type.rb
index 2cd2ec8dcda..545b3c0044d 100644
--- a/app/graphql/types/terraform/state_version_type.rb
+++ b/app/graphql/types/terraform/state_version_type.rb
@@ -9,7 +9,7 @@ module Types
authorize :read_terraform_state
- field :id, GraphQL::ID_TYPE,
+ field :id, GraphQL::Types::ID,
null: false,
description: 'ID of the Terraform state version.'
@@ -17,7 +17,7 @@ module Types
null: true,
description: 'The user that created this version.'
- field :download_path, GraphQL::STRING_TYPE,
+ field :download_path, GraphQL::Types::String,
null: true,
description: "URL for downloading the version's JSON file."
@@ -25,7 +25,7 @@ module Types
null: true,
description: 'The job that created this version.'
- field :serial, GraphQL::INT_TYPE,
+ field :serial, GraphQL::Types::Int,
null: true,
description: 'Serial number of the version.',
method: :version