Class: GraphQL::Language::Nodes::VariableDefinition
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::VariableDefinition
- Defined in:
- lib/graphql/language/nodes.rb
Overview
An operation-level query variable
Instance Attribute Summary collapse
-
#default_value ⇒ String, ...
A Ruby value to use if no other value is provided.
-
#name ⇒ String
The identifier for this variable, without ‘$`.
-
#type ⇒ TypeName, ...
The expected type of this value.
Attributes inherited from AbstractNode
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_value ⇒ String, ...
Returns A Ruby value to use if no other value is provided.
307 308 309 |
# File 'lib/graphql/language/nodes.rb', line 307 def default_value @default_value end |
#name ⇒ String
Returns The identifier for this variable, without ‘$`.
316 317 318 |
# File 'lib/graphql/language/nodes.rb', line 316 def name @name end |
#type ⇒ TypeName, ...
Returns The expected type of this value.
310 311 312 |
# File 'lib/graphql/language/nodes.rb', line 310 def type @type end |
Instance Method Details
#initialize_node(name: nil, type: nil, default_value: nil) ⇒ Object
316 317 318 319 320 |
# File 'lib/graphql/language/nodes.rb', line 316 def initialize_node(name: nil, type: nil, default_value: nil) @name = name @type = type @default_value = default_value end |