graphql-api
graphql-api copied to clipboard
Write type-safe GraphQL services in Haskell
I'm seeing this build error with GHC 8.6.5: ``` src/GraphQL/Internal/Syntax/Parser.hs:167:8: error: • No instance for (ConvertText Text ByteString) arising from a use of ‘unescapeText’ • In the expression: unescapeText parsed...
Hello, I hope everyone is doing well despite Covid-19. Does the library work with GraphiQL? Also, the version I'm using did not enable inputs for what I was doing (e.g.,...
It's currently not possible to parse documents that contain comments, as in e.g.: ``` """ A comment """ query T { } ```
Prior to this commit: λ parseWith (pure mempty) type_ "[B!]!" Done "!" (TypeList ...) With this commit we now have: λ parseWith (pure mempty) type_ "[B!]!" Done "" (TypeNonNull ...)...
There is a bug that prevents a document such as ``` input B { b: [B!]! } ``` from parsing. Note the difference between: ``` λ length parseOnly (many1 inputValueDefinition)...
Hi, I'm considering using graphQL on a Haskell based backend, your last commit on master was in January, almost 6 months ago. I was wondering if you are still maintaining/developing...
this code: ``` type Friend = Object "Friend" '[] '[ Field "id" Text.Text, Field "email" Text.Text ] type User = Object "User" '[] '[ Field "id" Text.Text, Field "email" Text.Text,...
It'd be nice to be able to write GraphQL clients in Haskell. This could quite possibly be a separate project.
Thanks much for all the work getting this GraphQL implementation together - it's no small task. How would you recommend using this library with variables parsed from a JSON Request?...