Class: GraphQL::Language::Nodes::SchemaExtension
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::SchemaExtension
- Defined in:
- lib/graphql/language/nodes.rb
Instance Attribute Summary collapse
-
#directives ⇒ Object
(also: #children)
Returns the value of attribute directives.
-
#mutation ⇒ Object
Returns the value of attribute mutation.
-
#query ⇒ Object
Returns the value of attribute query.
-
#subscription ⇒ Object
Returns the value of attribute subscription.
Attributes inherited from AbstractNode
Instance Method Summary collapse
- #initialize_node(query: nil, mutation: nil, subscription: nil, directives: []) ⇒ 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
#directives ⇒ Object Also known as: children
Returns the value of attribute directives.
407 408 409 |
# File 'lib/graphql/language/nodes.rb', line 407 def directives @directives end |
#mutation ⇒ Object
Returns the value of attribute mutation.
407 408 409 |
# File 'lib/graphql/language/nodes.rb', line 407 def mutation @mutation end |
#query ⇒ Object
Returns the value of attribute query.
407 408 409 |
# File 'lib/graphql/language/nodes.rb', line 407 def query @query end |
#subscription ⇒ Object
Returns the value of attribute subscription.
407 408 409 |
# File 'lib/graphql/language/nodes.rb', line 407 def subscription @subscription end |
Instance Method Details
#initialize_node(query: nil, mutation: nil, subscription: nil, directives: []) ⇒ Object
409 410 411 412 413 414 |
# File 'lib/graphql/language/nodes.rb', line 409 def initialize_node(query: nil, mutation: nil, subscription: nil, directives: []) @query = query @mutation = mutation @subscription = subscription @directives = directives end |
#scalars ⇒ Object
416 417 418 |
# File 'lib/graphql/language/nodes.rb', line 416 def scalars [query, mutation, subscription] end |