Class: GraphQL::Language::Nodes::SchemaDefinition
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::SchemaDefinition
- Defined in:
- lib/graphql/language/nodes.rb
Instance Attribute Summary collapse
-
#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
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
#mutation ⇒ Object
Returns the value of attribute mutation.
357 358 359 |
# File 'lib/graphql/language/nodes.rb', line 357 def mutation @mutation end |
#query ⇒ Object
Returns the value of attribute query.
357 358 359 |
# File 'lib/graphql/language/nodes.rb', line 357 def query @query end |
#subscription ⇒ Object
Returns the value of attribute subscription.
357 358 359 |
# File 'lib/graphql/language/nodes.rb', line 357 def subscription @subscription end |
Instance Method Details
#initialize_node(query: nil, mutation: nil, subscription: nil) ⇒ Object
360 361 362 363 364 |
# File 'lib/graphql/language/nodes.rb', line 360 def initialize_node(query: nil, mutation: nil, subscription: nil) @query = query @mutation = mutation @subscription = subscription end |