Exception: GraphQL::Schema::TimeoutMiddleware::TimeoutError
- Inherits:
-
ExecutionError
- Object
- StandardError
- Error
- ExecutionError
- GraphQL::Schema::TimeoutMiddleware::TimeoutError
- Defined in:
- lib/graphql/schema/timeout_middleware.rb
Overview
This error is raised when a query exceeds max_seconds
.
Since it’s a child of ExecutionError,
its message will be added to the response’s errors
key.
To raise an error that will stop query resolution, use a custom block
to take this error and raise a new one which doesn’t descend from ExecutionError,
such as RuntimeError
.
Instance Attribute Summary
Attributes inherited from ExecutionError
#ast_node, #extensions, #options, #path
Instance Method Summary collapse
-
#initialize(parent_type, field_defn) ⇒ TimeoutError
constructor
A new instance of TimeoutError.
Methods inherited from ExecutionError
Constructor Details
#initialize(parent_type, field_defn) ⇒ TimeoutError
Returns a new instance of TimeoutError.
80 81 82 |
# File 'lib/graphql/schema/timeout_middleware.rb', line 80 def initialize(parent_type, field_defn) super("Timeout on #{parent_type.name}.#{field_defn.name}") end |