Class: GraphQL::Introspection::FieldNode

Inherits:
Node
  • Object
show all
Defined in:
lib/graphql/introspection/field_node.rb

Instance Attribute Summary

Attributes inherited from Node

#query, #syntax_fields, #target

Instance Method Summary collapse

Methods inherited from Node

all_fields, #as_result, #context, cursor, default_schema_name, desc, description, exposes, field, inherited, #initialize, #method_missing, own_fields, remove_field, ruby_class_name, schema_name, type

Constructor Details

This class inherits a constructor from GraphQL::Node

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class GraphQL::Node

Instance Method Details

#callsObject



8
9
10
# File 'lib/graphql/introspection/field_node.rb', line 8

def calls
  target.calls.values
end

#nameObject



12
13
14
# File 'lib/graphql/introspection/field_node.rb', line 12

def name
  schema_name
end

#typeObject



16
17
18
# File 'lib/graphql/introspection/field_node.rb', line 16

def type
  value_type
end