Marvin Rabe

Results 5 comments of Marvin Rabe

@You2s I am not working on it. But feel free to provide a pull request for this feature.

It looks like form submission is partially implemented. It dispatches a HTMLEvent but does not support the submit method. **Minimal reproduction** As a Mocha + Chai test: ``` import {JSDOM}...

This is the result I have come up with: https://gist.github.com/marvinrabe/85f9ac19a052137fbcf7ee446b77878a If you are interested I might prepare a Pull Request with Tests. Before I need to know how I should...

@olivernybroe Nothing stops you from type hinting. And in my opinion this approach is better for this than using the $args array. Currently it is: ``` resolve($rootValue, array $args, GraphQLContext...

@olivernybroe But there is not always a clear mapping by only looking at the type hinting. Take this for an example: ``` input MyInput { foo: Int! } type Mutation...