Class: GraphQL::Language::Nodes::ObjectTypeDefinition
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::ObjectTypeDefinition
- 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.
-
#interfaces ⇒ Object
Returns the value of attribute interfaces.
-
#name ⇒ Object
Returns the value of attribute name.
Attributes inherited from AbstractNode
Instance Method Summary collapse
-
#children ⇒ Object
-
#initialize_node(name:, interfaces:, fields:, directives: [], description: nil) ⇒ Object
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
420 421 422 |
# File 'lib/graphql/language/nodes.rb', line 420 def description @description end |
#directives ⇒ Object
Returns the value of attribute directives
420 421 422 |
# File 'lib/graphql/language/nodes.rb', line 420 def directives @directives end |
#fields ⇒ Object
Returns the value of attribute fields
420 421 422 |
# File 'lib/graphql/language/nodes.rb', line 420 def fields @fields end |
#interfaces ⇒ Object
Returns the value of attribute interfaces
420 421 422 |
# File 'lib/graphql/language/nodes.rb', line 420 def interfaces @interfaces end |
#name ⇒ Object
Returns the value of attribute name
420 421 422 |
# File 'lib/graphql/language/nodes.rb', line 420 def name @name end |
Instance Method Details
#children ⇒ Object
430 431 432 |
# File 'lib/graphql/language/nodes.rb', line 430 def children interfaces + fields + directives end |
#initialize_node(name:, interfaces:, fields:, directives: [], description: nil) ⇒ Object
422 423 424 425 426 427 428 |
# File 'lib/graphql/language/nodes.rb', line 422 def initialize_node(name:, interfaces:, fields:, directives: [], description: nil) @name = name @interfaces = interfaces || [] @directives = directives @fields = fields @description = description end |