-
Notifications
You must be signed in to change notification settings - Fork 0
/
codegen.yml
51 lines (51 loc) · 1.5 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
45
46
47
48
49
50
51
overwrite: true
config:
namingConvention:
enumValues: keep
scalars:
BigDecimal: string
BigInt: string
Bytes: string
generates:
generated/bridgeworld.graphql.ts:
schema: ${NEXT_PUBLIC_BRIDGEWORLD_SUBGRAPH}
documents: "src/graphql/bridgeworld.graphql.ts"
plugins:
- "typescript"
- "typescript-operations"
- "typescript-graphql-request"
generated/queries.graphql.ts:
schema: ${NEXT_PUBLIC_GRAPHQL_URL}
documents: "src/graphql/queries.graphql.ts"
plugins:
- "typescript"
- "typescript-operations"
- "typescript-graphql-request"
generated/marketplace.graphql.ts:
schema: ${NEXT_PUBLIC_MARKETPLACE_SUBGRAPH}
documents: "src/graphql/marketplace.graphql.ts"
plugins:
- "typescript"
- "typescript-operations"
- "typescript-graphql-request"
generated/smolverse.graphql.ts:
schema: ${NEXT_PUBLIC_SMOLVERSE_SUBGRAPH}
documents: "src/graphql/smolverse.graphql.ts"
plugins:
- "typescript"
- "typescript-operations"
- "typescript-graphql-request"
generated/metadata.graphql.ts:
schema: ${NEXT_PUBLIC_METADATA_SUBGRAPH}
documents: "src/graphql/metadata.graphql.ts"
plugins:
- "typescript"
- "typescript-operations"
- "typescript-graphql-request"
generated/realm.graphql.ts:
schema: ${NEXT_PUBLIC_REALM_SUBGRAPH}
documents: "src/graphql/realm.graphql.ts"
plugins:
- "typescript"
- "typescript-operations"
- "typescript-graphql-request"