We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I only see these imports:
import { z } from 'zod' import { AccountType, ErrorClassification, PaymentStatus } from './graphql'
But I don't see anything else, like this for example:
export type SubmitPaymentMutationVariables = Exact<{ accountId: Scalars['ID']['input']; amount: Scalars['String']['input']; }>;
Config:
import { CodegenConfig } from '@graphql-codegen/cli' const config: CodegenConfig = { schema: [ { [process.env.NEXT_PUBLIC_GRAPHQL_URL_SCHEMA as string]: { // @ts-ignore https://github.com/dotansimha/graphql-code-generator/issues/9309 handleAsSDL: true, method: 'GET' } } ], documents: ['data/**/*.ts'], ignoreNoDocuments: true, generates: { './data/graphql/generated/': { preset: 'client', config: { strictScalars: true, scalars: { ID: 'string' } } }, './data/graphql/generated/graphql.zod.ts': { plugins: ['typescript-validation-schema'], config: { importFrom: './graphql', schema: 'zod', strictScalars: true, scalars: { ID: 'string' } } } } } export default config
The text was updated successfully, but these errors were encountered:
I did consider the workaround, even slightly modifying to be exactly like in #303 but it's the same. Also tried yup but also the same.
Sorry, something went wrong.
No branches or pull requests
I only see these imports:
But I don't see anything else, like this for example:
Config:
The text was updated successfully, but these errors were encountered: