summaryrefslogtreecommitdiff
path: root/src/Language/GraphQL/Error.hs
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2022-06-30 11:10:46 +0200
committerEugen Wissner <belka@caraus.de>2022-06-30 11:10:46 +0200
commit0dac9701bc3c1048d155d089167659ebcc152199 (patch)
tree0ef97d6b5846727347af37df95e32366d42b9c53 /src/Language/GraphQL/Error.hs
parent0d25f482dd33a71b93166b5fb0e6ac9de4a27eac (diff)
downloadgraphql-0dac9701bc3c1048d155d089167659ebcc152199.tar.gz
Document usage of the json flag
Diffstat (limited to 'src/Language/GraphQL/Error.hs')
-rw-r--r--src/Language/GraphQL/Error.hs12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/Language/GraphQL/Error.hs b/src/Language/GraphQL/Error.hs
index ffd3a78..403aaf6 100644
--- a/src/Language/GraphQL/Error.hs
+++ b/src/Language/GraphQL/Error.hs
@@ -103,8 +103,8 @@ instance Exception ResolverException
-- | 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./
+-- {-# DEPRECATED runCollectErrs was part of the old executor and isn't used
+-- anymore #-}
runCollectErrs :: (Monad m, Serialize a)
=> HashMap Name (Schema.Type m)
-> CollectErrsT m a
@@ -116,8 +116,8 @@ runCollectErrs types' res = do
-- | Executor context.
--
--- /Resolution was part of the old executor and isn't used anymore, it will be
--- deprecated in the future and removed./
+-- {-# DEPRECATED Resolution was part of the old executor and isn't used
+-- anymore #-}
data Resolution m = Resolution
{ errors :: Seq Error
, types :: HashMap Name (Schema.Type m)
@@ -125,6 +125,6 @@ data Resolution m = Resolution
-- | 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./
+-- {-# DEPRECATED CollectErrsT was part of the old executor and isn't used
+-- anymore #-}
type CollectErrsT m = StateT (Resolution m) m