This commit is contained in:
2026-06-24 15:34:09 +02:00
commit 65fb6816ca
442 changed files with 27246 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import type { CodegenConfig } from '@graphql-codegen/cli'
const config: CodegenConfig = {
overwrite: true,
schema: 'http://localhost:4000/graphql',
documents: 'graphql/**/*.graphql',
generates: {
'generated/graphql/': {
preset: 'client',
presetConfig: {
fragmentMasking: false
}
}
}
}
export default config