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

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

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_valueObject

Returns the value of attribute default_value.



226
227
228
# File 'lib/graphql/language/nodes.rb', line 226

def default_value
  @default_value
end

#nameObject

Returns the value of attribute name.



226
227
228
# File 'lib/graphql/language/nodes.rb', line 226

def name
  @name
end

#typeObject

Returns the value of attribute type.



226
227
228
# File 'lib/graphql/language/nodes.rb', line 226

def type
  @type
end

Instance Method Details

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



229
230
231
232
233
# File 'lib/graphql/language/nodes.rb', line 229

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