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'm running into Duplicate identifier errors because types and interfaces are being generated with the same names.
Duplicate identifier
Specifically in my case, these types are generated
export type QueryEditConnectionArgs = { languageCode?: Maybe<Scalars['String']>; allLanguages?: Maybe<Scalars['Boolean']>; allEdits?: Maybe<Scalars['Boolean']>; first?: Maybe<Scalars['Int']>; after?: Maybe<Scalars['String']>; }; export interface QueryEditConnectionArgs { languageCode?: string | null | undefined; allLanguages?: boolean | null | undefined; allEdits?: boolean | null | undefined; first?: number | null | undefined; after?: string | null | undefined; }
from this schema definiton:
editConnection(languageCode: String, allLanguages: Boolean, allEdits: Boolean, first: Int, after: String): EditConnection!
The text was updated successfully, but these errors were encountered:
Same here (tried to quickly replace typescript-resolvers).
Sorry, something went wrong.
No branches or pull requests
I'm running into
Duplicate identifier
errors because types and interfaces are being generated with the same names.Specifically in my case, these types are generated
from this schema definiton:
The text was updated successfully, but these errors were encountered: