Trey Stout
Trey Stout
Would you mind posting your `codegen.ts` you use with gitlab's GQL API? I'm generating the same thing with the config below, but unable to compile as it contains ~100 duplicates...
@ThePlenkov thank you for posting your examples, do you not get a ton of duplicate field errors in the enums when you generate? Maybe something in my eslint is wrong?...
update which solved the issue for me was adding `?remove_deprecated=true` when fetching the schema. Updated config... ```ts import type { CodegenConfig } from "@graphql-codegen/cli"; const config: CodegenConfig = { schema:...