-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcodegen.yml
More file actions
54 lines (54 loc) · 2.36 KB
/
codegen.yml
File metadata and controls
54 lines (54 loc) · 2.36 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
47
48
49
50
51
52
53
54
schema: src/schema/**/[^_]*.graphql
generates:
./src/resolvers/types/generated.ts:
config:
avoidOptionals:
defaultValue: true
field: true
inputValue: false
object: false
resolvers: true
contextType: ../../context#Context
rootValueType: unknown
immutableTypes: true
makeResolverTypeCallable: true
nonOptionalTypename: true
optionalInfoArgument: true
onlyResolveTypeForInterfaces: true
strictScalars: true
scalars:
Cursor: string
DateTime: Date
URL: string
mappers:
ConsoleLogEvent: ./mappers#ConsoleLogEventModel
StackTrace: ./mappers#StackTraceModel
HttpNetworkEvent: ./mappers#HttpNetworkEventModel
StepEvent: ./mappers#StepEventModel
StepEventEdge: ./mappers#StepEventEdgeModel
StepEventConnection: ./mappers#StepEventConnectionModel
ScenarioEvent: ./mappers#ScenarioEventModel
TestExecution: ./mappers#TestExecutionModel
TestExecutionConnection: ./mappers#TestExecutionConnectionModel
TestExecutionEdge: ./mappers#TestExecutionEdgeModel
TestExecutionEventConnection: ./mappers#TestExecutionEventConnectionModel
TestExecutionEventEdge: ./mappers#TestExecutionEventEdgeModel
TestRun: ./mappers#TestRunModel
TestRunConnection: ./mappers#TestRunConnectionModel
TestRunEdge: ./mappers#TestRunEdgeModel
GitHubRevision: ./mappers#GitHubRevisionModel
CommandChainEvent: ./mappers#CommandChainEventModel
CommandChainEventEdge: ./mappers#CommandChainEventEdgeModel
CommandChainEventConnection: ./mappers#CommandChainEventConnectionModel
CommandEvent: ./mappers#CommandEventModel
CommandEventEdge: ./mappers#CommandEventEdgeModel
CommandEventConnection: ./mappers#CommandEventConnectionModel
TestExecutionSnapshot: ./mappers#TestExecutionSnapshotModel
TestExecutionScreenshot: ./mappers#TestExecutionScreenshotModel
GitHubRevisionFile: ./mappers#GitHubRevisionFileModel
GitHubRevisionFileLine: ./mappers#GitHubRevisionFileLineModel
GitHubRevisionFileLineColumn: ./mappers#GitHubRevisionFileLineColumnModel
SourceCodeManagementRevisionFileLineColumn: ./mappers#SourceCodeManagementRevisionFileLineColumnModel
plugins:
- typescript
- typescript-resolvers