Class: GraphQL::Language::Nodes::Argument

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

Overview

A key-value pair for a field’s inputs

Instance Attribute Summary collapse

Attributes inherited from AbstractNode

#col, #filename, #line

Instance Method Summary collapse

Methods inherited from AbstractNode

#eql?, #initialize, #position, #to_query_string

Constructor Details

This class inherits a constructor from GraphQL::Language::Nodes::AbstractNode

Instance Attribute Details

#nameString

Returns the key for this argument

Returns:

  • (String)

    the key for this argument



98
99
100
# File 'lib/graphql/language/nodes.rb', line 98

def name
  @name
end

#valueString, ...

Returns The value passed for this key

Returns:

  • (String, Float, Integer, Boolean, Array, InputObject)

    The value passed for this key



104
105
106
# File 'lib/graphql/language/nodes.rb', line 104

def value
  @value
end

Instance Method Details

#childrenObject



113
114
115
# File 'lib/graphql/language/nodes.rb', line 113

def children
  [value].flatten.select { |v| v.is_a?(AbstractNode) }
end

#initialize_node(name: nil, value: nil) ⇒ Object



104
105
106
107
# File 'lib/graphql/language/nodes.rb', line 104

def initialize_node(name: nil, value: nil)
  @name = name
  @value = value
end

#scalarsObject



109
110
111
# File 'lib/graphql/language/nodes.rb', line 109

def scalars
  [name, value]
end