Class: GraphQL::Query::Context::ExecutionErrors
- Inherits:
- 
      Object
      
        - Object
- GraphQL::Query::Context::ExecutionErrors
 
- Defined in:
- lib/graphql/query/context.rb
Instance Method Summary collapse
- 
  
    
      #add(err_or_msg)  ⇒ Object 
    
    
      (also: #>>, #push)
    
  
  
  
  
  
  
  
  
  
    
- 
  
    
      #initialize(ctx)  ⇒ ExecutionErrors 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ExecutionErrors. 
Constructor Details
#initialize(ctx) ⇒ ExecutionErrors
Returns a new instance of ExecutionErrors.
| 84 85 86 | # File 'lib/graphql/query/context.rb', line 84 def initialize(ctx) @context = ctx end | 
Instance Method Details
#add(err_or_msg) ⇒ Object Also known as: >>, push
| 88 89 90 91 92 93 94 95 96 97 98 99 | # File 'lib/graphql/query/context.rb', line 88 def add(err_or_msg) err = case err_or_msg when String GraphQL::ExecutionError.new(err_or_msg) when GraphQL::ExecutionError err_or_msg else raise ArgumentError, "expected String or GraphQL::ExecutionError, not #{err_or_msg.class} (#{err_or_msg.inspect})" end # This will assign ast_node and path @context.add_error(err) end |