-
Notifications
You must be signed in to change notification settings - Fork 19
/
codegen.yml
41 lines (37 loc) · 1004 Bytes
/
codegen.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
overwrite: true
schema: 'apps/realworld-example-app/schema.graphql'
hooks:
afterAllFileWrite:
- prettier --write
generates:
# Get schemas from server
libs/data-access/src/lib/autogenerate/types.tsx:
documents: 'libs/data-access/src/**/*.graphql'
plugins:
- time
- typescript
# Create operations based on queries
libs/data-access/src/lib/autogenerate/operations.tsx:
documents: 'libs/data-access/src/**/*.graphql'
preset: import-types
presetConfig:
typesPath: ./types
plugins:
- time
- typescript-operations
# 1. Export GraphQL documents
# 2. React interface
libs/data-access/src/lib/autogenerate/hooks.tsx:
documents: 'libs/data-access/src/**/*.graphql'
preset: import-types
presetConfig:
typesPath: ./operations
plugins:
- time
- typescript-react-apollo
config:
fetcher: fetch
withHOC: false
withComponent: false
withHooks: true
withRefetchFn: true