graphql-haskell
graphql-haskell copied to clipboard
Haskell GraphQL implementation
Hi! I'm begining to write some utilities that will be reaching a GraphQL endpoint with Haskell. Do you plan to maintain this library in the future, and if not, could...
I'm not sure if this is the appropriate place to ask this question, but would it be possible to use Haskell's type system itself to represent custom GraphQL types instead...
This is an early draft but is usable and I made specs test it too. We could more easily generate introspection data from this notation. Adding `__typename` under every `Object`...
This fixes the two test cases related to typename. Should we make `__typename` and other type-system related information explicit and required for `object` schemas? I also had to change this...
Hi, Has the work on introspection started yet? I would like to help if you can give me some pointers. I want to use this with elm-graphql, but it requires...
Currently: ``` > parseOnly stringValue "\" hi\"" Right (StringValue "hi") ``` With `between'` (not the best name, maybe): ``` > parseOnly stringValue "\" hi\"" Right (StringValue " hi") ``` it...