Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

Commit

Permalink
chore(deps): update deps to newest version
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalLytek committed Sep 9, 2022
1 parent b938986 commit 91ca9b1
Show file tree
Hide file tree
Showing 11 changed files with 13,121 additions and 10,641 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Unreleased
<!-- here goes all the unreleased changes descriptions -->
### Features
- **Breaking Change**: update `graphql-js` peer dependency to `^16.2.0`
- **Breaking Change**: update `graphql-js` peer dependency to `^16.6.0`
### Fixes
- support overwriting fields of extended types (#1109)
- properly execute args validation for nullable items array (#1328)
Expand Down
7 changes: 7 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
presets: [["@babel/preset-env", { targets: { node: "current" } }], "@babel/preset-typescript"],
plugins: [
"babel-plugin-transform-typescript-metadata",
["@babel/plugin-syntax-decorators", { legacy: true }],
],
};
2 changes: 1 addition & 1 deletion examples/apollo-federation/helpers/buildFederatedSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export async function buildFederatedSchema(
});

if (referenceResolvers) {
addResolversToSchema(federatedSchema, referenceResolvers);
addResolversToSchema({ schema: federatedSchema, resolvers: referenceResolvers });
}
return federatedSchema;
}
Loading

0 comments on commit 91ca9b1

Please sign in to comment.