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 'spec/support/graphql/field_selection.rb')
-rw-r--r--spec/support/graphql/field_selection.rb8
1 files changed, 2 insertions, 6 deletions
diff --git a/spec/support/graphql/field_selection.rb b/spec/support/graphql/field_selection.rb
index 00323c46d69..432340cfdb5 100644
--- a/spec/support/graphql/field_selection.rb
+++ b/spec/support/graphql/field_selection.rb
@@ -46,7 +46,7 @@ module Graphql
NO_SKIP = ->(_name, _field) { false }
- def self.select_fields(type, skip = NO_SKIP, parent_types = Set.new, max_depth = 3)
+ def self.select_fields(type, skip = NO_SKIP, max_depth = 3)
return new if max_depth <= 0 || !type.kind.fields?
new(type.fields.flat_map do |name, field|
@@ -55,12 +55,8 @@ module Graphql
inspected = ::Graphql::FieldInspection.new(field)
singular_field_type = inspected.type
- # If field type is the same as parent type, then we're hitting into
- # mutual dependency. Break it from infinite recursion
- next [] if parent_types.include?(singular_field_type)
-
if inspected.nested_fields?
- subselection = select_fields(singular_field_type, skip, parent_types | [type], max_depth - 1)
+ subselection = select_fields(singular_field_type, skip, max_depth - 1)
next [] if subselection.empty?
[[name, subselection.to_h]]