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, #line

Instance Method Summary collapse

Methods inherited from AbstractNode

child_attributes, #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

#nameString

Returns the key for this argument.

Returns:

  • (String)

    the key for this argument



115
116
117
# File 'lib/graphql/language/nodes.rb', line 115

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



121
122
123
# File 'lib/graphql/language/nodes.rb', line 121

def value
  @value
end

Instance Method Details

#childrenObject



126
127
128
# File 'lib/graphql/language/nodes.rb', line 126

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

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



121
122
123
124
# File 'lib/graphql/language/nodes.rb', line 121

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