-
Notifications
You must be signed in to change notification settings - Fork 6
/
codegen.yml
45 lines (44 loc) · 1.08 KB
/
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
42
43
44
overwrite: true
schema: "schema.graphql"
documents:
- "./app/javascript/**/*.graphql"
- "./test/javascript/**/*.graphql"
generates:
app/javascript/graphqlTypes.generated.ts:
plugins:
- add:
content: '/* eslint-disable */'
- typescript
config:
nonOptionalTypename: true
strictScalars: true
scalars:
BigDecimal: string
Date: string
Json: string
JSON: unknown
Upload: File
app/javascript/:
preset: near-operation-file
presetConfig:
extension: .generated.ts
baseTypesPath: graphqlTypes.generated.ts
plugins:
- add:
content: '/* eslint-disable */'
- typescript-operations
- typed-document-node
config:
nonOptionalTypename: true
dedupeOperationSuffix: true
operationResultSuffix: Data
strictScalars: true
scalars:
BigDecimal: string
Date: string
Json: string
JSON: unknown
Upload: File
app/graphql/graphql_operations_generated.json:
plugins:
- "./graphQLOperationsJSON.js"