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/query_complexity_type.rb')
-rw-r--r--app/graphql/types/query_complexity_type.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/graphql/types/query_complexity_type.rb b/app/graphql/types/query_complexity_type.rb
index 82809fac22f..3f58a15aef7 100644
--- a/app/graphql/types/query_complexity_type.rb
+++ b/app/graphql/types/query_complexity_type.rb
@@ -9,7 +9,7 @@ module Types
alias_method :query, :object
- field :limit, GraphQL::INT_TYPE,
+ field :limit, GraphQL::Types::Int,
null: true,
method: :max_complexity,
see: {
@@ -18,7 +18,7 @@ module Types
},
description: 'GraphQL query complexity limit.'
- field :score, GraphQL::INT_TYPE,
+ field :score, GraphQL::Types::Int,
null: true,
description: 'GraphQL query complexity score.'