Andreas Garnaes

Results 40 comments of Andreas Garnaes

Ideas for backwards-compatible solutions (none of them particularly clean): - `ignore` could pass more arguments to the block, which is backwards-compatible assuming clients use a proc. - Add a new...

If I understand you correctly, what you're looking for is a way to compose the GraphQL HTTP handler with other routes. To that effect, `Graphql_lwt.Server` could expose a function with...

@anmonteiro that makes sense 👍

There's been [renewed interest](https://github.com/andreas/ocaml-graphql-server/pull/190) in using `httpaf` with `ocaml-graphql-server`, so I've spent some time revisiting the idea. The primary blocker is websocket support, which this PR is a crucial part...

> @andreas I force-pushed to this branch so you may want to update your fork. I'm going to try and add some more tests so I can merge #172 and...

Makes sense — looking forward to see how it works out 🙂

Thanks for suggesting this, @wokalski. I'd be happy to see this project on OPAM under the `ppx_graphql` name 😄

@shinzui, I haven't spend much time on `ppx_graphql` recently, but I did add basic union support. If you have specific needs, I'd be happy to help if you create issues....

@MoOx Is this still an issue for you? I cannot replicate with the provided query and server -- the query compiles instantly. I'm not sure if something changed on the...

Validation is definitely a sore point right now. I've previously started on some half-hearted attempts at implementing validation using visitors, e.g. using [`visitors`](https://gitlab.inria.fr/fpottier/visitors), but didn't find it to be a...