Class: GraphQL::Language::Nodes::FragmentSpread
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::FragmentSpread
- Includes:
- Scalars::Name
- Defined in:
- lib/graphql/language/nodes.rb
Overview
Application of a named fragment in a selection
Instance Attribute Summary collapse
-
#directives ⇒ Object
(also: #children)
Returns the value of attribute directives.
-
#name ⇒ String
The identifier of the fragment to apply, corresponds with GraphQL::Language::Nodes::FragmentDefinition#name.
Attributes inherited from AbstractNode
Instance Method Summary collapse
Methods inherited from AbstractNode
#eql?, #initialize, #position, #scalars, #to_query_string
Constructor Details
This class inherits a constructor from GraphQL::Language::Nodes::AbstractNode
Instance Attribute Details
#directives ⇒ Object Also known as: children
Returns the value of attribute directives
242 243 244 |
# File 'lib/graphql/language/nodes.rb', line 242 def directives @directives end |
#name ⇒ String
Returns The identifier of the fragment to apply, corresponds with GraphQL::Language::Nodes::FragmentDefinition#name
248 249 250 |
# File 'lib/graphql/language/nodes.rb', line 248 def name @name end |
Instance Method Details
#initialize_node(name: nil, directives: []) ⇒ Object
248 249 250 251 |
# File 'lib/graphql/language/nodes.rb', line 248 def initialize_node(name: nil, directives: []) @name = name @directives = directives end |