-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodegen.ts
47 lines (45 loc) · 1.12 KB
/
codegen.ts
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
import type { CodegenConfig } from "@graphql-codegen/cli";
const config: CodegenConfig = {
overwrite: true,
watch: true,
schema: [
{
"https://local.hasura.nhost.run/v1/graphql": {
headers: {
"x-hasura-admin-secret": "nhost-admin-secret",
"x-hasura-role": "admin",
},
},
},
],
generates: {
"./packages/backend/functions/_utils/__generated__/graphql.ts": {
documents: "./packages/backend/functions/_utils/graphql/*.graphql",
plugins: [
"typescript",
"typescript-operations",
"typescript-graphql-request",
],
},
"./apps/web/lib/graphql/__generated__/gql/": {
documents: [
"./apps/web/graphql/*.graphql",
"./apps/web/app/**/*.tsx",
"./apps/web/components/**/*.tsx",
],
preset: "client",
plugins: [],
presetConfig: {
fragmentMasking: { unmaskFunctionName: "getFragmentData" },
},
config: {
skipTypename: true,
enumsAsTypes: true,
scalars: {
numeric: "number",
},
},
},
},
};
export default config;