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 )
## Issue Projects that are using Apollo Client 3.0 onwards should use exports from `@apollo/client` instead of `@graphql-typed-document-node/core` and `graphql-tag` respectively. When we pass in `--td` flag when generating, it...
there are some issues from TS for generated files ``` src/generated/zeus/zeus/index.ts:655:3 - error TS6133: 'type' is declared but its value is never read. 655 type: T, ~~~~ src/generated/zeus/zeus/index.ts:656:3 - error...
After running the script ``` zeus http://hasura:8080/v1/graphql ./generated/hasura --node --header=x-hasura-admin-secret:$HASURA_ADMIN_SECRET ``` It will generate  But inside `index.ts` it tries to include a `.js` file ``` import { AllTypesProps, ReturnTypes,...
Currently the react-query implementation only works with react-query v2. In v3 the generic types passed to the hooks have changed. They're optional so the two extra `any` types aren't needed,...
I have this query right now ``` const { data, loading, error } = useTypedQuery({ deployedApps: [ {}, { id: true, name: true, }, ], }); ``` How can I...
Documentation https://graphqleditor.com/docs/tools/zeus/plugins/react-query/ says that when using `useTypedQuery` the response will be typed automatically but is not.  Only when I use the `Chain` client the response is typed, but I...
Problem: i have to add scalars to every single request Solution: create global config with scalars, which will apply them automatically to each request ``` chain('/graphql', { scalars: {...} });...
Hi Great library. I am using graphql-zues to generate graphql string and use apollo client to make http request. Now i want to use zeus Chain method for making api...
Hi, Recently i discovered this lib, that sounds awesome, but i am have facing issues about the types. I have found a workaround by placing a comment `// @ts-nocheck` at...
Currently the Client Library Generator creates a client for browser by default, but with the `--node` flag we can create a client for NodeJS. I've noticed the only difference between...