-
Notifications
You must be signed in to change notification settings - Fork 0
/
.graphqlrc
63 lines (63 loc) · 2.21 KB
/
.graphqlrc
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
{
"projects": {
"web-for-vite-project-template": {
"name": "web-for-vite-project-template",
"schema": [
"./src/graphQL/GraphQL.Schema.json"
],
"include": [
"./src/**/*.{graphql,graphqls,gql}",
"./webpack_location/**/*.{graphql,graphqls,gql}"
],
"exclude": [
"./src/graphQL/doc/**/*.{graphql,graphqls,gql}",
"./src/graphQL/GraphQL.Schema.json.graphql",
"./src/**/*.type.{graphql,graphqls,gql}"
],
"extensions": {
"endpoints": {
"deno001:https://127.0.0.1:9200": {
"url": "https://127.0.0.1:9200/graphql",
"introspect": true,
"headers": {
"Accept": "application/json",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "no-cache",
"Access-Control-Request-Headers": "Authorization, Accept, Content-Type, Content-Language, Accept-Language, Cache-Control",
"Access-Control-Request-Method": "GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH",
"user-agent": "GraphQL plugin from WebStorm."
}
}
}
}
},
"simulation_servers_deno": {
"name": "simulation_servers_deno",
"schema": [
"./src/graphQL/GraphQL.Schema.json"
],
"include": [
"./simulation_servers/deno/src/**/*.test.{graphql,graphqls,gql}"
],
"exclude": [
"./simulation_servers/deno/src/**/*.type.{graphql,graphqls,gql}"
],
"extensions": {
"endpoints": {
"deno002:https://127.0.0.1:9200": {
"url": "https://127.0.0.1:9200/graphql",
"introspect": true,
"headers": {
"Accept": "application/json",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "no-cache",
"Access-Control-Request-Headers": "Authorization, Accept, Content-Type, Content-Language, Accept-Language, Cache-Control",
"Access-Control-Request-Method": "GET, HEAD, POST, PUT, DELETE, CONNECT, OPTIONS, TRACE, PATCH",
"user-agent": "GraphQL plugin from WebStorm."
}
}
}
}
}
}
}