graphql-zeus
graphql-zeus copied to clipboard
GraphQL client and GraphQL code generator with GraphQL autocomplete library generation ⚡⚡⚡ for browser,nodejs and react native ( apollo compatible )
I'm using zeus with apollo and it seems that I can pass any arbitrary key to `typedGql` which will compile but end up as a 400. Am I missing something...
react-query has renamed to tanstack query. We should upgrade this I think: https://github.com/TanStack/query
While playing with the new changes introduced in v5, I noticed that Apollo queries and mutations variables can now be made typesafe by using the `typedGql` helper (as documented here)....
I am using Hasura as a subscription server. Now that you support the graphql-ws protocol after #301 🥳 I can almost completly drop apollo as a dependency of my project....
Thanks for this great library. I'm using 5.1.7 and trying the [example](https://zeus.graphqleditor.com/page/graphql/directives.html) for using variables in a directive, but not sure if the error I'm getting is because of misuse...
I have some custom scalars I got from the [Urigo/graphql-scalars](https://github.com/Urigo/graphql-scalars) library. These scalars, by default, have `unknown` typing as their input and output value when using the SDK generated by...
Hey there, I have generated a client with `--subscriptions graphql-ws` . I am also using hasura subscription and I want to migrate from my apolo subscription client to the zeus...
When targeting Node (`--n`) and Graphql-ws subscriptions (`--subscriptions graphql-ws`), the generated file has 2 issues that cause compile time and run time errors: 1. `tsc` error: using global Headers type...
The file generated by Zeus is missing a few things when using both the `--n` (target Node) and `--subscriptions graphql-ws` (subscriptions with `graphql-ws` lib instead of the legacy websocket client):...
We use zeus to generate typescript bindings for a graphql endpoint that has a lot of types and fields. Our generated files are huge. They are often a source of...