You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/graphql/execution/batching/field_resolve_step.rb
+30-5Lines changed: 30 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -168,8 +168,9 @@ def self.[](_key)
168
168
end
169
169
170
170
defexecute_field
171
+
query=@selections_step.query
171
172
field_name=@ast_node.name
172
-
@field_definition=@selections_step.query.get_field(@parent_type,field_name) || raise("Invariant: no field found for #{@parent_type.to_type_signature}.#{ast_node.name}")
173
+
@field_definition=query.get_field(@parent_type,field_name) || raise("Invariant: no field found for #{@parent_type.to_type_signature}.#{ast_node.name}")
0 commit comments