Class: GraphQL::Execution::Execute Private
- Inherits:
 - 
      Object
      
        
- Object
 - GraphQL::Execution::Execute
 
 
- Includes:
 - ExecutionFunctions
 
- Defined in:
 - lib/graphql/execution/execute.rb
 
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
A valid execution strategy
Defined Under Namespace
Modules: ExecutionFunctions, FieldResolveStep Classes: PropagateNull, Skip
Constant Summary collapse
- SKIP =
          
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
Just a singleton for implementing Query::Context#skip
 Skip.new
- PROPAGATE_NULL =
          
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
 PropagateNull.new
Class Method Summary collapse
- 
  
    
      .begin_multiplex(_multiplex)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  private
  
    
 - 
  
    
      .begin_query(query, _multiplex)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  private
  
    
 - 
  
    
      .finish_multiplex(results, multiplex)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  private
  
    
 - 
  
    
      .finish_query(query, _multiplex)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  private
  
    
 
Instance Method Summary collapse
Methods included from ExecutionFunctions
continue_or_wait, continue_resolve_field, lazy_resolve_root_selection, resolve_field, resolve_root_selection, resolve_selection, resolve_value
Class Method Details
.begin_multiplex(_multiplex) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
      27 28  | 
    
      # File 'lib/graphql/execution/execute.rb', line 27 def self.begin_multiplex(_multiplex) end  | 
  
.begin_query(query, _multiplex) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
      30 31 32  | 
    
      # File 'lib/graphql/execution/execute.rb', line 30 def self.begin_query(query, _multiplex) ExecutionFunctions.resolve_root_selection(query) end  | 
  
.finish_multiplex(results, multiplex) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
      34 35 36  | 
    
      # File 'lib/graphql/execution/execute.rb', line 34 def self.finish_multiplex(results, multiplex) ExecutionFunctions.lazy_resolve_root_selection(results, multiplex: multiplex) end  | 
  
.finish_query(query, _multiplex) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
      38 39 40 41 42  | 
    
      # File 'lib/graphql/execution/execute.rb', line 38 def self.finish_query(query, _multiplex) { "data" => Execution::Flatten.call(query.context) } end  | 
  
Instance Method Details
#execute(ast_operation, root_type, query) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
      21 22 23 24 25  | 
    
      # File 'lib/graphql/execution/execute.rb', line 21 def execute(ast_operation, root_type, query) result = resolve_root_selection(query) lazy_resolve_root_selection(result, {query: query}) GraphQL::Execution::Flatten.call(query.context) end  |