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

Attributes inherited from AbstractNode

#filename

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from AbstractNode

#==, #children, #children_method_name, children_of_type, #col, #definition_line, #delete_child, inherited, #initialize_copy, #line, #merge, #position, #replace_child, #scalars, #to_query_string

Constructor Details

#initialize(name: nil, type: nil, directives: NONE, selections: NONE, filename: nil, pos: nil, source: nil, line: nil, col: nil) ⇒ FragmentDefinition

Returns a new instance of FragmentDefinition.



436
437
438
439
440
441
442
443
444
445
446
# File 'lib/graphql/language/nodes.rb', line 436

def initialize(name: nil, type: nil, directives: NONE, selections: NONE, filename: nil, pos: nil, source: nil, line: nil, col: nil)
  @name = name
  @type = type
  @directives = directives
  @selections = selections
  @filename  = filename
  @pos = pos
  @source = source
  @line = line
  @col = col
end

Class Method Details

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



448
449
450
# File 'lib/graphql/language/nodes.rb', line 448

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

#marshal_dumpObject



452
453
454
# File 'lib/graphql/language/nodes.rb', line 452

def marshal_dump
  [line, col, @filename, @name, @type, @directives, @selections]
end

#marshal_load(values) ⇒ Object



456
457
458
# File 'lib/graphql/language/nodes.rb', line 456

def marshal_load(values)
  @line, @col, @filename, @name, @type, @directives, @selections = values
end