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
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.
410 411 412 |
# File 'lib/graphql/language/nodes.rb', line 410 def arguments @arguments end |
#description ⇒ Object
Returns the value of attribute description.
410 411 412 |
# File 'lib/graphql/language/nodes.rb', line 410 def description @description end |
#directives ⇒ Object
Returns the value of attribute directives.
410 411 412 |
# File 'lib/graphql/language/nodes.rb', line 410 def directives @directives end |
#name ⇒ Object
Returns the value of attribute name.
410 411 412 |
# File 'lib/graphql/language/nodes.rb', line 410 def name @name end |
#type ⇒ Object
Returns the value of attribute type.
410 411 412 |
# File 'lib/graphql/language/nodes.rb', line 410 def type @type end |
Instance Method Details
#initialize_node(name:, arguments:, type:, directives: [], description: nil) ⇒ Object
414 415 416 417 418 419 420 |
# File 'lib/graphql/language/nodes.rb', line 414 def initialize_node(name:, arguments:, type:, directives: [], description: nil) @name = name @arguments = arguments @type = type @directives = directives @description = description end |