Dylan Owen

Results 26 comments of Dylan Owen

Along these same lines, I've been thinking about a feature like https://learning.postman.com/docs/postman/sending-api-requests/requests/#binary-data or for sending a GraphQL request (currently formatting the GraphQL request is a little messy). I wanted to...

Thanks for the context, it helps / I didn't know about IntelliJ's version. GraphQL requests are usually encapsulated in json, so a request body like: ``` { leftComparison: hero(episode: EMPIRE)...

If we are looking at integrating `graphql multipart spec` into `graphql over http` I'd recommend we rework the implementation. [The current spec is very specific to a JS Server Middleware...

Hi @yanns I've been looking at the [`Argument`](https://github.com/sangria-graphql/sangria/blob/master/modules/core/src/main/scala/sangria/schema/Schema.scala#L646) class and more specifically how we resolve its value at execution time [`ValueCoercionHelper.resolveMapValue`](https://github.com/sangria-graphql/sangria/blob/master/modules/core/src/main/scala/sangria/execution/ValueCoercionHelper.scala#L41) I'm trying to write my own custom `FromInput`, but...

@thomasheyenbrock thanks for the quick review! I'm still working on the CLA but should have that ready soon.

@acao Sorry for the CLA delay but it should be all set now

@jonathanawesome I'm pretty sure this is caused by the long lag time between my PR being tested and me getting my CLA signed. When I opened this PR those selectors...

Thanks for the quick fix! I was wondering if it'd be better to not depend on the `DocExplorer` for the test so I was working on ```javascript let foundError =...

I also ran into a similar issue recently with this rust input: ``` #[wasm_bindgen] extern "C" { #[wasm_bindgen(extends = js_sys::Object)] pub type Panels; #[wasm_bindgen(method, getter)] pub fn create(this: &Panels, title:...