-
Notifications
You must be signed in to change notification settings - Fork 0
/
codegen.js
42 lines (41 loc) · 991 Bytes
/
codegen.js
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
require('dotenv').config({ path: '.env.local' });
module.exports = {
schema: [
{
[`${process.env.HASURA_URL}/v1/graphql`]: {
headers: {
'x-hasura-admin-secret': process.env.HASURA_ADMIN,
},
},
},
],
overwrite: true,
generates: {
'./graphql.schema.json': {
plugins: ['introspection'],
},
'./graphql.schema.graphql': {
plugins: ['schema-ast'],
},
'./src/generated/graphql.ts': {
documents: ['./src/**/*.tsx', './src/**/*.ts', './src/**/*.graphql'],
plugins: ['typescript', 'typescript-operations', 'typescript-urql'],
config: {
skipTypename: false,
withHooks: true,
},
},
'./lib/generated/graphql.ts': {
documents: ['./lib/**/*.graphql'],
plugins: [
'typescript',
'typescript-operations',
'typescript-graphql-request',
],
config: {
skipTypename: false,
withHooks: true,
},
},
},
};