Class: GraphQL::Language::Nodes::Field
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::Field
- Defined in:
- lib/graphql/language/nodes.rb
Overview
A single selection in a GraphQL query.
Constant Summary collapse
- NONE =
[].freeze
Constants inherited from AbstractNode
Instance Attribute Summary collapse
-
#selections ⇒ Array<Nodes::Field>
Selections on this object (or empty array if this is a scalar field).
Attributes inherited from AbstractNode
Instance Method Summary collapse
Methods inherited from AbstractNode
#==, #children, #children_method_name, #delete_child, inherited, #initialize, #initialize_copy, #merge, #position, #replace_child, #scalars, #to_query_string
Constructor Details
This class inherits a constructor from GraphQL::Language::Nodes::AbstractNode
Instance Attribute Details
#selections ⇒ Array<Nodes::Field>
Returns Selections on this object (or empty array if this is a scalar field).
370 371 372 373 374 375 376 377 |
# File 'lib/graphql/language/nodes.rb', line 370 def initialize_node(attributes) @name = attributes[:name] @arguments = attributes[:arguments] || NONE @directives = attributes[:directives] || NONE @selections = attributes[:selections] || NONE # oops, alias is a keyword: @alias = attributes[:alias] end |
Instance Method Details
#initialize_node(attributes) ⇒ Object
370 371 372 373 374 375 376 377 |
# File 'lib/graphql/language/nodes.rb', line 370 def initialize_node(attributes) @name = attributes[:name] @arguments = attributes[:arguments] || NONE @directives = attributes[:directives] || NONE @selections = attributes[:selections] || NONE # oops, alias is a keyword: @alias = attributes[:alias] end |