Class: GraphQL::Language::Nodes::InlineFragment

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

Overview

An unnamed fragment, defined directly in the query with ‘… { }`

Instance Attribute Summary collapse

Attributes inherited from AbstractNode

#col, #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.



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

def directives
  @directives
end

#selectionsObject

Returns the value of attribute selections.



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

def selections
  @selections
end

#typeString?

Returns Name of the type this fragment applies to, or ‘nil` if this fragment applies to any type.

Returns:

  • (String, nil)

    Name of the type this fragment applies to, or ‘nil` if this fragment applies to any type



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

def type
  @type
end

Instance Method Details

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



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

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