Class: GraphQL::Language::Nodes::OperationDefinition
- Inherits:
 - 
      AbstractNode
      
        
- Object
 - AbstractNode
 - GraphQL::Language::Nodes::OperationDefinition
 
 
- Defined in:
 - lib/graphql/language/nodes.rb
 
Overview
A query, mutation or subscription.
May be anonymous or named.
May be explicitly typed (eg mutation { ... }) or implicitly a query (eg { ... }).
Constant Summary
Constants inherited from AbstractNode
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String? 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name for this operation, or
nilif unnamed. - 
  
    
      #operation_type  ⇒ String? 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The root type for this operation, or
nilfor implicit"query". - 
  
    
      #selections  ⇒ Array<Field> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Root-level fields on this operation.
 - 
  
    
      #variables  ⇒ Array<VariableDefinition> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Variable $definitions for this operation.
 
Attributes inherited from AbstractNode
Instance Method Summary collapse
Methods inherited from AbstractNode
#children, #delete_child, #eql?, inherited, #initialize, #initialize_copy, #merge, #position, #replace_child, #scalars, #to_query_string, #visit_method
Constructor Details
This class inherits a constructor from GraphQL::Language::Nodes::AbstractNode
Instance Attribute Details
#name ⇒ String?
Returns The name for this operation, or nil if unnamed.
      522 523 524  | 
    
      # File 'lib/graphql/language/nodes.rb', line 522 def children_method_name :definitions end  | 
  
#operation_type ⇒ String?
Returns The root type for this operation, or nil for implicit "query".
| 
       | 
    
      # File 'lib/graphql/language/nodes.rb', line 516
     | 
  
#selections ⇒ Array<Field>
Returns Root-level fields on this operation.
| 
       | 
    
      # File 'lib/graphql/language/nodes.rb', line 513
     | 
  
#variables ⇒ Array<VariableDefinition>
Returns Variable $definitions for this operation.
| 
       | 
    
      # File 'lib/graphql/language/nodes.rb', line 510
     | 
  
Instance Method Details
#children_method_name ⇒ Object
      522 523 524  | 
    
      # File 'lib/graphql/language/nodes.rb', line 522 def children_method_name :definitions end  |