diff --git a/.gitignore b/.gitignore index 82e9a202..fde0f2b6 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,6 @@ node_modules/ build/* -tools/scripts/github_token.json \ No newline at end of file +tools/scripts/github_token.json + +src/lib/graphql/schema.json diff --git a/src/lib/graphql/graphql.config.yml b/src/lib/graphql/graphql.config.yml new file mode 100644 index 00000000..0c80f0d1 --- /dev/null +++ b/src/lib/graphql/graphql.config.yml @@ -0,0 +1,7 @@ +schema: schema.json # download the schema from the server and place it in "src/lib/graphql/" +documents: [ + 'src/lib/graphql/queries/**', + 'src/lib/graphql/mutations/**', + 'src/lib/graphql/subscriptions/**', + 'src/lib/graphql/Fragments.ts', +] \ No newline at end of file