Class: GraphQL::Language::Nodes::VariableDefinition

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

Overview

An operation-level query variable

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

#default_valueString, ...



337
338
339
# File 'lib/graphql/language/nodes.rb', line 337

def default_value
  @default_value
end

#nameString



346
347
348
# File 'lib/graphql/language/nodes.rb', line 346

def name
  @name
end

#typeTypeName, ...



340
341
342
# File 'lib/graphql/language/nodes.rb', line 340

def type
  @type
end

Instance Method Details

#initialize_node(name: nil, type: nil, default_value: nil) ⇒ Object



346
347
348
349
350
# File 'lib/graphql/language/nodes.rb', line 346

def initialize_node(name: nil, type: nil, default_value: nil)
  @name = name
  @type = type
  @default_value = default_value
end