forked from tinacms/tinacms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
graphql.config.yml
33 lines (32 loc) · 1.39 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
# The need to put paths like "packages/**/*.movies.gql" is due to a bug
# in VSCode GraphQL, but this works well enough
# https://github.com/graphql/vscode-graphql/issues/242#issue-721757152
projects:
forestry:
schema: packages/@tinacms/graphql/src/spec/forestry-sample/.tina/__generated__/schema.gql
documents:
- packages/**/*.forestry.gql
movies:
schema: packages/@tinacms/graphql/src/spec/movies/.tina/__generated__/schema.gql
documents:
- packages/**/*.movies.gql
moviesWithDatalayer:
schema: packages/@tinacms/graphql/src/spec/movies-with-datalayer/.tina/__generated__/schema.gql
documents:
- packages/**/*.movies-with-datalayer.gql
pageBuilder:
schema: packages/@tinacms/graphql/src/spec/page-builder/.tina/__generated__/schema.gql
documents:
- packages/**/*.page-builder.gql
unitTestExample:
schema: experimental-examples/unit-test-example/.tina/__generated__/schema.gql
documents:
- packages/tinacms/src/hooks/formify/**/*.spec.ts
- packages/tinacms/src/hooks/formify/**/*.unit-test.gql
- experimental-examples/unit-test-example/**/*.js
starter:
schema: experimental-examples/tina-cloud-starter/.tina/__generated__/schema.gql
documents:
- experimental-examples/tina-cloud-starter/**/*.tsx
- experimental-examples/tina-cloud-starter/**/*.ts
- experimental-examples/tina-cloud-starter/**/*.gql