summaryrefslogtreecommitdiff
path: root/app/graphql/resolvers/blobs_resolver.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/resolvers/blobs_resolver.rb')
-rw-r--r--app/graphql/resolvers/blobs_resolver.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/graphql/resolvers/blobs_resolver.rb b/app/graphql/resolvers/blobs_resolver.rb
index d006769bd4b..d0eb2deaf48 100644
--- a/app/graphql/resolvers/blobs_resolver.rb
+++ b/app/graphql/resolvers/blobs_resolver.rb
@@ -10,13 +10,13 @@ module Resolvers
alias_method :repository, :object
- argument :paths, [GraphQL::STRING_TYPE],
+ argument :paths, [GraphQL::Types::String],
required: true,
description: 'Array of desired blob paths.'
- argument :ref, GraphQL::STRING_TYPE,
+ argument :ref, GraphQL::Types::String,
required: false,
default_value: nil,
- description: 'The commit ref to get the blobs from. Default value is HEAD.'
+ description: 'Commit ref to get the blobs from. Default value is HEAD.'
# We fetch blobs from Gitaly efficiently but it still scales O(N) with the
# number of paths being fetched, so apply a scaling limit to that.