graphql-zeus icon indicating copy to clipboard operation
graphql-zeus copied to clipboard

GraphQL client and GraphQL code generator with GraphQL autocomplete library generation ⚡⚡⚡ for browser,nodejs and react native ( apollo compatible )

Results 106 graphql-zeus issues
Sort by recently updated
recently updated
newest added

Added type cast of node-fetch response: The response of node fetch v3 is `Promise` instead of `Promise` , so an explicit type cast to `Promise` is required.

A suggestion for 5.0... 🤗 Unless using another client (Apollo, React Query) then the Chain client (and Subscription) is the main "entry point" into Zeus for users but it's hidden...

Is there a way to get a `Chain` client working within a Jest test? The error I get is: `ReferenceError: fetch is not defined` so I try to fix it...

React-query 3.34.7 usequery is working great, but usetypedmutation isn't working with variables. Here's the code that fails for me-- ``` const createRequest = useTypedMutation("createRequest", { createRequest: [ { input: {...

I don't think `TreeToTs` and `Utils` are being exported in 4.0.4 https://zeus.graphqleditor.com/page/library.html

Could there be a flag which would run Prettier on the output files after generation? Using the .prettierrc.json config in the same directory. I know I could manually add this...

First off, thanks for addressing support for apollo and https://github.com/graphql-editor/graphql-zeus/issues/194. `useTypedQuery` works great but in some cases we can't use hooks (e.g. [Next.js SSR `getServerSideProps`](https://stackoverflow.com/questions/64202834/invalid-hook-call-in-getserversideprops-nextjs/71636434#71636434)). I'm relying on this in...

In this part: https://github.com/graphql-editor/graphql-zeus/blob/25d891938a7e2cb777321fee6437eaaf3ecfe956/src/TreeToTS/templates/typescript/browser/fetchFunction.ts#L34-L37 The `fetchOptions` are spread and if it contains a `headers` property, it overwrites the default `'Content-Type'` header. I faced a quite subtle bug where we were...

Hello, Its possible extend function `export const ScalarResolver = (scalar: string, value: any)` generated in zeus-graphql.ts? I have defined custom date scalar in my graphql schema and need extend the...