summaryrefslogtreecommitdiff
path: root/app/graphql/types/snippets
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-08-19 09:08:42 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-08-19 09:08:42 +0000
commitb76ae638462ab0f673e5915986070518dd3f9ad3 (patch)
treebdab0533383b52873be0ec0eb4d3c66598ff8b91 /app/graphql/types/snippets
parent434373eabe7b4be9593d18a585fb763f1e5f1a6f (diff)
downloadgitlab-ce-b76ae638462ab0f673e5915986070518dd3f9ad3.tar.gz
Add latest changes from gitlab-org/gitlab@14-2-stable-eev14.2.0-rc42
Diffstat (limited to 'app/graphql/types/snippets')
-rw-r--r--app/graphql/types/snippets/blob_action_input_type.rb6
-rw-r--r--app/graphql/types/snippets/blob_type.rb22
2 files changed, 14 insertions, 14 deletions
diff --git a/app/graphql/types/snippets/blob_action_input_type.rb b/app/graphql/types/snippets/blob_action_input_type.rb
index 13eade3dcc4..45dc4be8451 100644
--- a/app/graphql/types/snippets/blob_action_input_type.rb
+++ b/app/graphql/types/snippets/blob_action_input_type.rb
@@ -10,15 +10,15 @@ module Types
description: 'Type of input action.',
required: true
- argument :previous_path, GraphQL::STRING_TYPE,
+ argument :previous_path, GraphQL::Types::String,
description: 'Previous path of the snippet file.',
required: false
- argument :file_path, GraphQL::STRING_TYPE,
+ argument :file_path, GraphQL::Types::String,
description: 'Path of the snippet file.',
required: true
- argument :content, GraphQL::STRING_TYPE,
+ argument :content, GraphQL::Types::String,
description: 'Snippet file content.',
required: false
end
diff --git a/app/graphql/types/snippets/blob_type.rb b/app/graphql/types/snippets/blob_type.rb
index 1335838935e..d5da271d936 100644
--- a/app/graphql/types/snippets/blob_type.rb
+++ b/app/graphql/types/snippets/blob_type.rb
@@ -8,36 +8,36 @@ module Types
description 'Represents the snippet blob'
present_using SnippetBlobPresenter
- field :rich_data, GraphQL::STRING_TYPE,
+ field :rich_data, GraphQL::Types::String,
description: 'Blob highlighted data.',
null: true
- field :plain_data, GraphQL::STRING_TYPE,
+ field :plain_data, GraphQL::Types::String,
description: 'Blob plain highlighted data.',
null: true
- field :raw_plain_data, GraphQL::STRING_TYPE,
+ field :raw_plain_data, GraphQL::Types::String,
description: 'The raw content of the blob, if the blob is text data.',
null: true
- field :raw_path, GraphQL::STRING_TYPE,
+ field :raw_path, GraphQL::Types::String,
description: 'Blob raw content endpoint path.',
null: false
- field :size, GraphQL::INT_TYPE,
+ field :size, GraphQL::Types::Int,
description: 'Blob size.',
null: false
- field :binary, GraphQL::BOOLEAN_TYPE,
+ field :binary, GraphQL::Types::Boolean,
description: 'Shows whether the blob is binary.',
method: :binary?,
null: false
- field :name, GraphQL::STRING_TYPE,
+ field :name, GraphQL::Types::String,
description: 'Blob name.',
null: true
- field :path, GraphQL::STRING_TYPE,
+ field :path, GraphQL::Types::String,
description: 'Blob path.',
null: true
@@ -49,15 +49,15 @@ module Types
description: 'Blob content rich viewer.',
null: true
- field :mode, type: GraphQL::STRING_TYPE,
+ field :mode, type: GraphQL::Types::String,
description: 'Blob mode.',
null: true
- field :external_storage, type: GraphQL::STRING_TYPE,
+ field :external_storage, type: GraphQL::Types::String,
description: 'Blob external storage.',
null: true
- field :rendered_as_text, type: GraphQL::BOOLEAN_TYPE,
+ field :rendered_as_text, type: GraphQL::Types::Boolean,
description: 'Shows whether the blob is rendered as text.',
method: :rendered_as_text?,
null: false