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

Feature: Add generateProxyingResolvers to public API for v6.0.0 #1570

Merged
merged 2 commits into from Jun 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -2,8 +2,9 @@

### Next

- Fix visitEnumValue to allow modifying the enum value <br/>
- Fix visitEnumValue to allow modifying the enum value <br/>
[@danielrearden](https://github.com/danielrearden) in [#1003](https://github.com/ardatan/graphql-tools/pull/1391)
- Export `generateProxyingResolvers` from `@graphql-tools/wrap`.

### 5.0.0

Expand Down
2 changes: 1 addition & 1 deletion packages/wrap/src/index.ts
@@ -1,5 +1,5 @@
export { wrapSchema } from './wrapSchema';
export { defaultCreateProxyingResolver } from './generateProxyingResolvers';
export { defaultCreateProxyingResolver, generateProxyingResolvers } from './generateProxyingResolvers';

export * from './transforms/index';

Expand Down