-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcodegen.yml
More file actions
46 lines (46 loc) · 1.12 KB
/
codegen.yml
File metadata and controls
46 lines (46 loc) · 1.12 KB
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
42
43
44
45
46
overwrite: true
schema: 'http://localhost:4000/graphql'
documents:
- 'src/**/*.graphql'
hooks:
afterAllFileWrite:
- biome check --fix --unsafe
- biome format --write
generates:
src/core/apollo/generated/graphql-schema.ts:
plugins:
- typescript
- typescript-operations
config:
maybeValue: T | undefined
preResolveTypes: true
scalars:
Upload: File
TextID: string
NameID: string
Emoji: string
UUID: string
DID: string
CID: string
DateTime: Date
JSON: string
Markdown: string
MessageID: string
LifecycleDefinition: string
MemoContent: string
WhiteboardContent: string
SearchCursor: string
strictScalars: true
src/core/apollo/generated/apollo-hooks.ts:
preset: import-types
presetConfig:
typesPath: ./graphql-schema
importTypesNamespace: SchemaTypes
plugins:
- typescript-react-apollo
config:
withHooks: true
withRefetchFn: true
src/core/apollo/generated/apollo-helpers.ts:
plugins:
- typescript-apollo-client-helpers