James MacAulay
James MacAulay
I've pushed a [document-parser branch](https://github.com/jamesmacaulay/elm-graphql/tree/document-parser) with a work-in-progress of [a parser for query/mutation documents](https://github.com/jamesmacaulay/elm-graphql/compare/document-parser). Right now it just parses simple selection sets (no fragments). You can use `elm-reactor` with the...
The [document-parser branch](https://github.com/jamesmacaulay/elm-graphql/tree/document-parser) should now parse all valid GraphQL documents. The syntax error messages are probably not very helpful right now, but at least it works! Before incorporating this into...
I've started on the task of analyzing document/schema pairs for code generation, and quickly decided that the best first step is to implement document validation. Not only is it perfectly...
@Vynlar Sorry for the delayed response. The `Schema` module is not currently used by the package. I think it was the first thing I wrote for the package, thinking that...
I forgot to include it in the "future plans" section of the readme, but this is definitely something I'd like to support!
@xtian I haven't researched subscriptions very deeply so I don't have many strong opinions about it. I can think of a couple broad constraints though: * The solution should be...
That's an excellent suggestion for making the documentation more clear :) As for `lazy`-like functionality to allow for recursive decoders: I don't think anything quite like that is possible, because...
Oh wow...yeah that’s a pretty complex situation, good job for figuring it out! One thing though – if you wanted to end up with a query that’s equivalent to this...
MWS AuthToken now available in MWS Client Libraries > As previously announced, Amazon Marketplace Web Service (Amazon MWS) authorizations now include an additional parameter – the “MWSAuthToken”. The MWSAuthToken represents...
I'm here by way of #58, because I think people should be able to open up their terminal after installing elm and type "elm repl" to play around without having...