Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

allow passing schema plugins #618

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -175,7 +175,7 @@ yarn graphql-let init
Next, add
[graphql-codegen plugins](https://graphql-code-generator.com/docs/plugins/index)
in it. **Please note that you have to generate a TypeScript source** by the
plugins.
plugins. schemaPlugins are used for plugins that generates types from the schema and the result ends up into `__types__`.

Edit it like this:

@@ -187,6 +187,8 @@ Edit it like this:
plugins:
+ - typescript-operations
+ - typescript-react-apollo
+ schemaPlugins:
+ - typescript-urql-graphcache
```

### 3. Check your `cacheDir`
2 changes: 2 additions & 0 deletions __tests__/__fixtures/tsconfig/graphql-let.yml
Original file line number Diff line number Diff line change
@@ -4,6 +4,8 @@ documents:
plugins:
- typescript-operations
- typescript-react-apollo
schemaPlugins:
- typescript-urql-graphcache
config:
useIndexSignature: true
TSConfigFile: es3config.json
2 changes: 2 additions & 0 deletions __tests__/__fixtures/tsconfig/graphql-let2.yml
Original file line number Diff line number Diff line change
@@ -4,6 +4,8 @@ documents:
plugins:
- typescript-operations
- typescript-react-apollo
schemaPlugins:
- typescript-urql-graphcache
config:
withHOC: false
withHocks: true
2 changes: 2 additions & 0 deletions __tests__/__fixtures/tsconfig/graphql-let3.yml
Original file line number Diff line number Diff line change
@@ -4,6 +4,8 @@ documents:
plugins:
- typescript-operations
- typescript-react-apollo
schemaPlugins:
- typescript-urql-graphcache
config:
useIndexSignature: true
cacheDir: .cache
2 changes: 2 additions & 0 deletions __tests__/__fixtures/tsconfig/graphql-let4.yml
Original file line number Diff line number Diff line change
@@ -7,6 +7,8 @@ documents:
plugins:
- typescript-operations
- typescript-react-apollo
schemaPlugins:
- typescript-urql-graphcache
config:
useIndexSignature: true
cacheDir: .cache
Loading