-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcodegen.yml
28 lines (28 loc) · 908 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
overwrite: true
documents: null
generates:
src/models/generated/graphql.ts:
config:
useIndexSignature: true
useTypeImports: true
contextType: ../context#Context
skipTypename: true
scalars:
Object: Record<string, string>
Date: Date
DateTime: Date
mappers:
Article: ../mappers#ArticleResponse
File: ../mappers#FileResponse
Meeting: ../mappers#MeetingResponse
Election: ../mappers#ElectionResponse
Proposal: ../mappers#ProposalResponse
Nomination: ../mappers#NominationResponse
Hehe: ../mappers#HeheResponse
AccessLogPost: ../mappers#AccessLogPostResponse
AccessLogIndividualAccess: ../mappers#AccessLogIndividualAccessResponse
ApiKey: ../mappers#ApiKeyResponse
schema: "./src/schemas/*.graphql"
plugins:
- "typescript"
- "typescript-resolvers"