Class: GraphQL::Language::Nodes::FieldDefinition
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::FieldDefinition
- Defined in:
- lib/graphql/language/nodes.rb
Instance Attribute Summary collapse
-
#arguments ⇒ Object
Returns the value of attribute arguments.
-
#description ⇒ Object
Returns the value of attribute description.
-
#directives ⇒ Object
Returns the value of attribute directives.
-
#name ⇒ Object
Returns the value of attribute name.
-
#type ⇒ Object
Returns the value of attribute type.
Attributes inherited from AbstractNode
Instance Method Summary collapse
- #children ⇒ Object
- #initialize_node(name:, arguments:, type:, directives: [], description: nil) ⇒ Object
- #scalars ⇒ Object
Methods inherited from AbstractNode
#eql?, #initialize, #position, #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.
450 451 452 |
# File 'lib/graphql/language/nodes.rb', line 450 def arguments @arguments end |
#description ⇒ Object
Returns the value of attribute description.
450 451 452 |
# File 'lib/graphql/language/nodes.rb', line 450 def description @description end |
#directives ⇒ Object
Returns the value of attribute directives.
450 451 452 |
# File 'lib/graphql/language/nodes.rb', line 450 def directives @directives end |
#name ⇒ Object
Returns the value of attribute name.
450 451 452 |
# File 'lib/graphql/language/nodes.rb', line 450 def name @name end |
#type ⇒ Object
Returns the value of attribute type.
450 451 452 |
# File 'lib/graphql/language/nodes.rb', line 450 def type @type end |
Instance Method Details
#children ⇒ Object
460 461 462 |
# File 'lib/graphql/language/nodes.rb', line 460 def children arguments + directives end |
#initialize_node(name:, arguments:, type:, directives: [], description: nil) ⇒ Object
452 453 454 455 456 457 458 |
# File 'lib/graphql/language/nodes.rb', line 452 def initialize_node(name:, arguments:, type:, directives: [], description: nil) @name = name @arguments = arguments @type = type @directives = directives @description = description end |
#scalars ⇒ Object
464 465 466 |
# File 'lib/graphql/language/nodes.rb', line 464 def scalars [name, type] end |