Magnus Hallin
Magnus Hallin
Looking at it now, the large request body might be a red herring - we might just be straight up rate-limited by sentry.io. Anyhow, it would be neat if Raven...
Hello, and sorry for the late answer. As far as I know, this is not possible in Rust since the context is an associated type on the underlying `GraphQLType` trait....
Hello, and thanks for bringing this up to the table! While the parser part looks good, I've got some reservations for giving up control over the AST data structures to...
Hello! The file should be named `graphql_schema.json`. I will look into as to why specifying the filename does not work.
This sounds similar to https://github.com/mhallin/graphql_ppx/issues/26, where the conclusion would be to use `option(option(t))` for optional input variables. I'm thinking now that `Js.Nullable` would be a better solution, though. Either way,...
I have not been able to reproduce this. If you're running into this, could you please provide more detail? How does your schema and queries look?
The generated code uses `Js.Json` and `Js.Dict` to parse JSON with minimal runtime dependencies, as well as `bs.obj` to create JavaScript objects rather than OCaml objects. We could of course...
Since we migrated over to distributing binaries in the npm package, I guess nothing's really preventing us from moving to the latest OCaml release as long as the output is...
Interesting idea, I'm not sure how easy it would be to tack this on to the current implementation. Maybe this would be another "output mode" that you could specify as...
Hello! What would be the correct behavior for graphql_ppx here? To me, the problem seems to be the fact that the fields aren't really optional if you can't set them...