Class: GraphQL::Language::Nodes::InputValueDefinition

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.



377
378
379
# File 'lib/graphql/language/nodes.rb', line 377

def default_value
  @default_value
end

#descriptionObject

Returns the value of attribute description.



377
378
379
# File 'lib/graphql/language/nodes.rb', line 377

def description
  @description
end

#directivesObject

Returns the value of attribute directives.



377
378
379
# File 'lib/graphql/language/nodes.rb', line 377

def directives
  @directives
end

#nameObject

Returns the value of attribute name.



377
378
379
# File 'lib/graphql/language/nodes.rb', line 377

def name
  @name
end

#typeObject

Returns the value of attribute type.



377
378
379
# File 'lib/graphql/language/nodes.rb', line 377

def type
  @type
end

Instance Method Details

#initialize_node(name:, type:, default_value: nil, directives: [], description: nil) ⇒ Object



381
382
383
384
385
386
387
# File 'lib/graphql/language/nodes.rb', line 381

def initialize_node(name:, type:, default_value: nil, directives: [], description: nil)
  @name = name
  @type = type
  @default_value = default_value
  @directives = directives
  @description = description
end