-
Notifications
You must be signed in to change notification settings - Fork 0
/
.graphqlrc.js
71 lines (68 loc) · 1.92 KB
/
.graphqlrc.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
require('dotenv').config({
path: __dirname + '/.env',
});
module.exports = {
schema: [
{
[process.env.DATO_ENDPOINT]: {
headers: {
'Content-Type': 'application/json',
Accept: 'application/json',
Authorization: `Bearer ${process.env.DATO_API_KEY}`,
},
},
},
],
documents: './lib/graphql/**/*.graphql',
extensions: {
endpoints: {
default: {
url: process.env.DATO_ENDPOINT,
headers: {
'Content-Type': 'application/json',
Accept: 'application/json',
Authorization: `Bearer ${process.env.DATO_API_KEY}`,
},
},
},
codegen: {
overwrite: true,
generates: {
'./lib/generated/graphql.schema.json': {
plugins: ['introspection'],
},
'./lib/generated/sdk.ts': {
plugins: [
'typescript',
'typescript-operations',
'typescript-graphql-request',
'plugin-typescript-swr',
],
config: {
fetcher: {
endpoint: {
[process.env.DATO_ENDPOINT]: {
headers: {
'Content-Type': 'application/json',
Accept: 'application/json',
Authorization: `Bearer ${process.env.DATO_API_KEY}`,
},
},
},
},
rawRequest: false,
inlineFragmentTypes: 'combine',
skipTypename: false,
exportFragmentSpreadSubTypes: true,
dedupeFragments: true,
preResolveTypes: true,
},
},
'./lib/generated/schema.graphql': {
// for developer lookup (unused)
plugins: ['schema-ast'],
},
},
},
},
};