blob: 161fd1c765e29034898d3cdc216db8925f5a1325 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
schema: '../graphql/schema/*.graphql'
overwrite: true
documents: src/**/*.graphql
generates:
./src/fragmentTypes.js:
plugins:
- fragment-matcher
config:
module: es2015
./src/gqlTypes.ts:
plugins:
- typescript
./src/:
plugins:
- add: '/* eslint-disable @typescript-eslint/no-unused-vars */'
- typescript-operations
- typescript-react-apollo
preset: near-operation-file
presetConfig:
extension: .generated.tsx
baseTypesPath: gqlTypes.ts
config:
withComponent: false
withHOC: false
withHooks: true
hooks:
afterOneFileWrite:
- prettier --write
|