Class: GraphQL::Language::Nodes::EnumValueDefinition
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::EnumValueDefinition
- Defined in:
- lib/graphql/language/nodes.rb
Instance Attribute Summary collapse
-
#description ⇒ Object
Returns the value of attribute description.
-
#directives ⇒ Object
Returns the value of attribute directives.
-
#name ⇒ Object
Returns the value of attribute name.
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
#description ⇒ Object
Returns the value of attribute description.
461 462 463 |
# File 'lib/graphql/language/nodes.rb', line 461 def description @description end |
#directives ⇒ Object
Returns the value of attribute directives.
461 462 463 |
# File 'lib/graphql/language/nodes.rb', line 461 def directives @directives end |
#name ⇒ Object
Returns the value of attribute name.
461 462 463 |
# File 'lib/graphql/language/nodes.rb', line 461 def name @name end |
Instance Method Details
#initialize_node(name:, directives: [], description: nil) ⇒ Object
465 466 467 468 469 |
# File 'lib/graphql/language/nodes.rb', line 465 def initialize_node(name:, directives: [], description: nil) @name = name @directives = directives @description = description end |