-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodegen.config.ts
More file actions
41 lines (37 loc) · 907 Bytes
/
codegen.config.ts
File metadata and controls
41 lines (37 loc) · 907 Bytes
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
import "dotenv/config";
import type { CodegenConfig } from "@graphql-codegen/cli";
import {
BigIntResolver,
ByteResolver,
TimestampResolver,
} from "graphql-scalars";
const subgraphUrl = process.env.SUBGRAPH_URL;
if (!subgraphUrl) {
throw new Error("Missing SUBGRAPH_URL environment variable");
}
const config: CodegenConfig = {
emitLegacyCommonJSImports: false,
schema: subgraphUrl,
generates: {
"src/subgraphs/lilnouns.gen.ts": {
plugins: [
"typescript",
"typescript-operations",
"typescript-graphql-request",
],
config: {
strictScalars: false,
scalars: {
BigInt: BigIntResolver,
Bytes: ByteResolver,
Timestamp: TimestampResolver,
},
useTypeImports: true,
namingConvention: {
transformUnderscore: true,
},
},
},
},
};
export default config;