Class: GraphQL::Language::Nodes::Directive
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::Directive
- Defined in:
- lib/graphql/language/nodes.rb
Instance Attribute Summary collapse
-
#arguments ⇒ Object
Returns the value of attribute arguments.
-
#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
#arguments ⇒ Object
Returns the value of attribute arguments.
135 136 137 |
# File 'lib/graphql/language/nodes.rb', line 135 def arguments @arguments end |
#name ⇒ Object
Returns the value of attribute name.
135 136 137 |
# File 'lib/graphql/language/nodes.rb', line 135 def name @name end |
Instance Method Details
#initialize_node(name: nil, arguments: []) ⇒ Object
139 140 141 142 |
# File 'lib/graphql/language/nodes.rb', line 139 def initialize_node(name: nil, arguments: []) @name = name @arguments = arguments end |