Class: GraphQL::Language::Nodes::EnumValueDefinition
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::EnumValueDefinition
- Includes:
- Scalars::Name
- Defined in:
- lib/graphql/language/nodes.rb
Instance Attribute Summary collapse
-
#description ⇒ Object
Returns the value of attribute description.
-
#directives ⇒ Object
(also: #children)
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
#eql?, #initialize, #position, #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.
612 613 614 |
# File 'lib/graphql/language/nodes.rb', line 612 def description @description end |
#directives ⇒ Object Also known as: children
Returns the value of attribute directives.
612 613 614 |
# File 'lib/graphql/language/nodes.rb', line 612 def directives @directives end |
#name ⇒ Object
Returns the value of attribute name.
612 613 614 |
# File 'lib/graphql/language/nodes.rb', line 612 def name @name end |
Instance Method Details
#initialize_node(name:, directives: [], description: nil) ⇒ Object
615 616 617 618 619 |
# File 'lib/graphql/language/nodes.rb', line 615 def initialize_node(name:, directives: [], description: nil) @name = name @directives = directives @description = description end |