Class: GraphQL::Language::Nodes::FragmentDefinition

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

Overview

A reusable fragment, defined at document-level.

Constant Summary

Constants inherited from AbstractNode

AbstractNode::NO_CHILDREN

Instance Attribute Summary collapse

Attributes inherited from AbstractNode

#col, #filename, #line

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from AbstractNode

#==, #children, #children_method_name, children_of_type, #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

#nameString

Returns the identifier for this fragment, which may be applied with ...#{name}.

Returns:

  • (String)

    the identifier for this fragment, which may be applied with ...#{name}



# File 'lib/graphql/language/nodes.rb', line 387

#typeString

Returns the type condition for this fragment (name of type which it may apply to).

Returns:

  • (String)

    the type condition for this fragment (name of type which it may apply to)



392
393
394
395
396
397
# File 'lib/graphql/language/nodes.rb', line 392

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

Class Method Details

.from_a(filename, line, col, name, type, directives, selections) ⇒ Object



399
400
401
# File 'lib/graphql/language/nodes.rb', line 399

def self.from_a(filename, line, col, name, type, directives, selections)
  self.new(filename: filename, line: line, col: col, name: name, type: type, directives: directives, selections: selections)
end

Instance Method Details

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



392
393
394
395
396
397
# File 'lib/graphql/language/nodes.rb', line 392

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