Class: GraphQL::Language::Nodes::EnumValueDefinition

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

#directivesObject

Returns the value of attribute directives.



436
437
438
# File 'lib/graphql/language/nodes.rb', line 436

def directives
  @directives
end

#nameObject

Returns the value of attribute name.



436
437
438
# File 'lib/graphql/language/nodes.rb', line 436

def name
  @name
end

Instance Method Details

#initialize_node(name:, directives: []) ⇒ Object



440
441
442
443
# File 'lib/graphql/language/nodes.rb', line 440

def initialize_node(name:, directives: [])
  @name = name
  @directives = directives
end