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/ci_configuration/sast/entity_type.rb')
-rw-r--r--app/graphql/types/ci_configuration/sast/entity_type.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/graphql/types/ci_configuration/sast/entity_type.rb b/app/graphql/types/ci_configuration/sast/entity_type.rb
index eeb9025391f..41b8575d99a 100644
--- a/app/graphql/types/ci_configuration/sast/entity_type.rb
+++ b/app/graphql/types/ci_configuration/sast/entity_type.rb
@@ -8,25 +8,25 @@ module Types
graphql_name 'SastCiConfigurationEntity'
description 'Represents an entity in SAST CI configuration'
- field :field, GraphQL::STRING_TYPE, null: true,
+ field :field, GraphQL::Types::String, null: true,
description: 'CI keyword of entity.'
- field :label, GraphQL::STRING_TYPE, null: true,
+ field :label, GraphQL::Types::String, null: true,
description: 'Label for entity used in the form.'
- field :type, GraphQL::STRING_TYPE, null: true,
+ field :type, GraphQL::Types::String, null: true,
description: 'Type of the field value.'
field :options, ::Types::CiConfiguration::Sast::OptionsEntityType.connection_type, null: true,
description: 'Different possible values of the field.'
- field :default_value, GraphQL::STRING_TYPE, null: true,
+ field :default_value, GraphQL::Types::String, null: true,
description: 'Default value that is used if value is empty.'
- field :description, GraphQL::STRING_TYPE, null: true,
+ field :description, GraphQL::Types::String, null: true,
description: 'Entity description that is displayed on the form.'
- field :value, GraphQL::STRING_TYPE, null: true,
+ field :value, GraphQL::Types::String, null: true,
description: 'Current value of the entity.'
field :size, ::Types::CiConfiguration::Sast::UiComponentSizeEnum, null: true,