Class: GraphQL::Language::Nodes::InterfaceTypeDefinition
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::InterfaceTypeDefinition
- Includes:
- Scalars::Name
- 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.
-
#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
#description ⇒ Object
Returns the value of attribute description
475 476 477 |
# File 'lib/graphql/language/nodes.rb', line 475 def description @description end |
#directives ⇒ Object
Returns the value of attribute directives
475 476 477 |
# File 'lib/graphql/language/nodes.rb', line 475 def directives @directives end |
#fields ⇒ Object
Returns the value of attribute fields
475 476 477 |
# File 'lib/graphql/language/nodes.rb', line 475 def fields @fields end |
#name ⇒ Object
Returns the value of attribute name
475 476 477 |
# File 'lib/graphql/language/nodes.rb', line 475 def name @name end |
Instance Method Details
#children ⇒ Object
484 485 486 |
# File 'lib/graphql/language/nodes.rb', line 484 def children fields + directives end |
#initialize_node(name:, fields:, directives: [], description: nil) ⇒ Object
477 478 479 480 481 482 |
# File 'lib/graphql/language/nodes.rb', line 477 def initialize_node(name:, fields:, directives: [], description: nil) @name = name @fields = fields @directives = directives @description = description end |