Method: GraphQL::Language::StaticVisitor#on_field_children
- Defined in:
- lib/graphql/language/static_visitor.rb
#on_field_children(new_node) ⇒ Object
32 33 34 35 36 37 38 |
# File 'lib/graphql/language/static_visitor.rb', line 32 def on_field_children(new_node) new_node.arguments.each do |arg_node| # rubocop:disable Development/ContextIsPassedCop on_argument(arg_node, new_node) end visit_directives(new_node) visit_selections(new_node) end |