summaryrefslogtreecommitdiff
path: root/src/Language/GraphQL/Trans.hs
AgeCommit message (Collapse)Author
2020-05-13Accept resolvers given by the user as isEugen Wissner
2020-02-01Replace MonadIO constraint with just MonadEugen Wissner
And make the tests use Identity instead of IO.
2020-01-01Rewrite argument list to argument mapEugen Wissner
2019-12-31Retrieve resolver arguments from the readerEugen Wissner
2019-11-23Add a reader instance to the resolversEugen Wissner
The Reader contains a Name/Value hashmap, which will contain resolver arguments.
2019-09-25Document undocumented modulesEugen Wissner
Fixes #15.
2019-08-26Provide more documentation on functions and typesEugen Wissner
2019-07-14Make all exports explicitEugen Wissner
2019-07-02Introduce monad transformer for resolversEugen Wissner
Now the errors in the resolvers can be handled and 3 tests throwing errors pass now. Another test fail but it requires distinguisching nullable and non-nullable values.