Class: GraphQL::Language::Nodes::InputObjectTypeExtension
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::InputObjectTypeExtension
- Defined in:
- lib/graphql/language/nodes.rb
Instance Attribute Summary collapse
-
#directives ⇒ Object
Returns the value of attribute directives.
-
#fields ⇒ Object
Returns the value of attribute fields.
-
#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
#directives ⇒ Object
Returns the value of attribute directives
640 641 642 |
# File 'lib/graphql/language/nodes.rb', line 640 def directives @directives end |
#fields ⇒ Object
Returns the value of attribute fields
640 641 642 |
# File 'lib/graphql/language/nodes.rb', line 640 def fields @fields end |
#name ⇒ Object
Returns the value of attribute name
640 641 642 |
# File 'lib/graphql/language/nodes.rb', line 640 def name @name end |
Instance Method Details
#children ⇒ Object
648 649 650 |
# File 'lib/graphql/language/nodes.rb', line 648 def children fields + directives end |
#initialize_node(name:, fields:, directives: []) ⇒ Object
642 643 644 645 646 |
# File 'lib/graphql/language/nodes.rb', line 642 def initialize_node(name:, fields:, directives: []) @name = name @fields = fields @directives = directives end |