Safe Haskell | None |
---|---|
Language | Haskell2010 |
Error handling.
Synopsis
- type CollectErrsT m = StateT (Resolution m) m
- data Error = Error {}
- data Path
- data Resolution m = Resolution {}
- data ResolverException = forall e.Exception e => ResolverException e
- data Response a = Response {}
- type ResponseEventStream m a = ConduitT () (Response a) m ()
- addErr :: Monad m => Error -> CollectErrsT m ()
- addErrMsg :: (Monad m, Serialize a) => Text -> CollectErrsT m a
- parseError :: (Applicative f, Serialize a) => ParseErrorBundle Text Void -> f (Response a)
- runCollectErrs :: (Monad m, Serialize a) => HashMap Name (Type m) -> CollectErrsT m a -> m (Response a)
- singleError :: Serialize a => Text -> Response a
Documentation
type CollectErrsT m = StateT (Resolution m) m Source #
A wrapper to pass error messages around.
/CollectErrsT was part of the old executor and isn't used anymore, it will be deprecated in the future and removed./
GraphQL
error.
If an error can be associated to a particular field in the GraphQL result, it must contain an entry with the key path that details the path of the response field which experienced the error. This allows clients to identify whether a null result is intentional or caused by a runtime error.
data Resolution m Source #
Executor context.
/Resolution was part of the old executor and isn't used anymore, it will be deprecated in the future and removed./
data ResolverException Source #
Only exceptions that inherit from ResolverException
a cought by the
executor.
forall e.Exception e => ResolverException e |
Instances
Show ResolverException Source # | |
Defined in Language.GraphQL.Error showsPrec :: Int -> ResolverException -> ShowS # show :: ResolverException -> String # showList :: [ResolverException] -> ShowS # | |
Exception ResolverException Source # | |
Defined in Language.GraphQL.Error |
The server's response describes the result of executing the requested operation if successful, and describes any errors encountered during the request.
type ResponseEventStream m a = ConduitT () (Response a) m () Source #
Each event in the underlying Source Stream triggers execution of the subscription selection set. The results of the execution generate a Response Stream.
addErrMsg :: (Monad m, Serialize a) => Text -> CollectErrsT m a Source #
Convenience function for just wrapping an error message.
parseError :: (Applicative f, Serialize a) => ParseErrorBundle Text Void -> f (Response a) Source #
Wraps a parse error into a list of errors.
runCollectErrs :: (Monad m, Serialize a) => HashMap Name (Type m) -> CollectErrsT m a -> m (Response a) Source #
Runs the given query computation, but collects the errors into an error list, which is then sent back with the data.
/runCollectErrs was part of the old executor and isn't used anymore, it will be deprecated in the future and removed./