Class: GraphQL::Language::Nodes::FragmentSpread

Inherits:
AbstractNode
  • Object
show all
Defined in:
lib/graphql/language/nodes.rb

Overview

Application of a named fragment in a selection

Instance Attribute Summary collapse

Attributes inherited from AbstractNode

#col, #filename, #line

Instance Method Summary collapse

Methods inherited from AbstractNode

child_attributes, #children, #eql?, inherited, #initialize, #position, scalar_attributes, #scalars, #to_query_string

Constructor Details

This class inherits a constructor from GraphQL::Language::Nodes::AbstractNode

Instance Attribute Details

#directivesObject

Returns the value of attribute directives.



238
239
240
# File 'lib/graphql/language/nodes.rb', line 238

def directives
  @directives
end

#nameString

Returns The identifier of the fragment to apply, corresponds with GraphQL::Language::Nodes::FragmentDefinition#name.

Returns:



245
246
247
# File 'lib/graphql/language/nodes.rb', line 245

def name
  @name
end

Instance Method Details

#initialize_node(name: nil, directives: []) ⇒ Object



245
246
247
248
# File 'lib/graphql/language/nodes.rb', line 245

def initialize_node(name: nil, directives: [])
  @name = name
  @directives = directives
end