Arthur Welf

Results 6 comments of Arthur Welf

I think as a first step you can do it as web-service like for [JSON decoding](https://noredink.github.io/json-to-elm/). User posts GraphQL API endpoint and his query or mutation, the web-service sends an...

Can you please add a code example of how to deal with complex arguments like filtering? I've spent a lot of time reading docs but didn't realized what to do...

Wow! I've made it! 🥇 ``` import GraphQL.Request.Builder exposing (..) import GraphQL.Request.Builder.Arg as Arg import GraphQL.Request.Builder.Variable as Var exposing (Variable) ... mutualFollowersVar = Var.required "filter" .filterArg (Var.object "UserFilter" [ Var.field...

I have the same problem which I described here: https://github.com/atom-haskell/autocomplete-haskell/issues/8 It will be useful to have in settings checkbox "Don't show autocomplete for words used in comments only". It creates...

Please let define in `interface` various directives and all types which are implementing that interface should inherit all directives. For example: ``` interface Product @model { id: ID! @isUnique vendor:...

I use union types for every product category as they possess different properties. ``` union Product = Shoes | Dress | TShirt | Suit | ... ``` Without union types...