-
Notifications
You must be signed in to change notification settings - Fork 356
/
graphql.config.yml
40 lines (40 loc) · 1.36 KB
/
graphql.config.yml
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
projects:
tenant:
schema:
- '../server/src/core/server/graph/schema/schema.graphql'
stream:
schema:
- '../server/src/core/server/graph/schema/schema.graphql'
- './src/core/client/framework/lib/relay/local.graphql'
- './src/core/client/stream/local/local.graphql'
- './relay-compiler-directives-v10.0.1.graphql'
documents:
- './src/core/client/stream/**/*.ts'
- './src/core/client/stream/**/*.tsx'
extensions:
languageService:
useSchemaFileDefinitions: true
admin:
schema:
- '../server/src/core/server/graph/schema/schema.graphql'
- './src/core/client/framework/lib/relay/local.graphql'
- './src/core/client/admin/local/local.graphql'
- './relay-compiler-directives-v10.0.1.graphql'
documents:
- './src/core/client/admin/**/*.ts'
- './src/core/client/admin/**/*.tsx'
extensions:
languageService:
useSchemaFileDefinitions: true
auth:
schema:
- '../server/src/core/server/graph/schema/schema.graphql'
- './src/core/client/framework/lib/relay/local.graphql'
- './src/core/client/auth/local/local.graphql'
- './relay-compiler-directives-v10.0.1.graphql'
documents:
- './src/core/client/auth/**/*.ts'
- './src/core/client/auth/**/*.tsx'
extensions:
languageService:
useSchemaFileDefinitions: true