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 )
Is there a way that Apollo's `subscribeToMore` function returned by `useQuery` or Zeus' `useTypedQuery` can take a Zeus typed document node? https://www.apollographql.com/docs/react/data/subscriptions/#subscribing-to-updates-for-a-query
I'm evaluating possibilities and options to interact with an existing GraphQL API that is provided by a CMS called Statamic Pro. On running zeus with this npm command: `zeus https://someurl.com/graphql...
At the moment generated code produces client factory function in form of `Chain` which requires user to create a `client` first before using it, which in turn creates a need...
Here's how I've gotten this to work with React, but I'm hoping there's a better way other than the `[gql(Zeus.query(q_get_profile))]` call below: ``` const { loading, error, data } =...
Add `*` field to construct a query with all scalar and enum fields. ```graphql enum Kind{ FISH BIRD } type Animal{ name: String! friends: [Animal!]! age: Int! kind: Kind! }...
When is the wrong bearer token there only one way to find what's going one is console.log(error) inside "graphql-zeus/lib/Utils/index.js" for 37 line of code. If token is wrong the response...
I was testing out the library with a small schema and realized that around 80% of the generated file is the configuration object that holds info on the schema for...
Would be nice to use a linter like [graphql-schema-linter](https://github.com/cjoudrey/graphql-schema-linter) when [the provided graphql code is unsuccessfully parsed](https://github.com/graphql-editor/graphql-zeus/blob/master/src/Parser/index.ts#L68) to tell the users why graphql-zeus isnt proceeding. I'm hoping this would be...
We should have typings generated for other languages