Is your feature request related to a problem? Please describe.
Any update for GraphQL version 15 support. Currently give error for not supported GraphQL version
UnhandledPromiseRejectionWarning: Error: Looks like you use an incorrect version of the 'graphql' package: "15.0.0". Please ensure that you have installed a version that meets TypeGraphQL's requirement: "^14.1.1".
Describe the solution you'd like
Update on Roadmap towards GraphQL new version.
I need to go through all the breaking changes and fixes, adjust the code appropriately and fix all the encountered issued:
https://github.com/graphql/graphql-js/releases
Don't expect this to be backported to 0.17.x branch - this will be a part of a major v1.0.0 release 馃槈
Seems there is lot breaking changes and understand it will take time to co with it. But love to see it added to 1.0 release. Seems my Lerna setup added it as project dependancy. After removing it the error is gone.
The first issue I've encountered is this bug:
https://github.com/graphql/graphql-js/issues/2504
Based on the experience with v14, it gonna takes a few weeks or longer to update all other libraries like apollo libraries to work with v15. For now it's 10+ peer dependencies error on install.
Work in progress is available in https://github.com/MichalLytek/type-graphql/tree/graphql-js-v15
try to remove graphql by yarn remove graphql and install it again with version "graphql": "^14.1.1",
As no response from graphql-js maintainers, I gonna move forward and re-enable that failing test case later, when they release a patch for that.
So closing via a67c3af 馃敀 Available in 1.0.0-rc.1 release 馃槈
Most helpful comment
I need to go through all the breaking changes and fixes, adjust the code appropriately and fix all the encountered issued:
https://github.com/graphql/graphql-js/releases
Don't expect this to be backported to
0.17.xbranch - this will be a part of a majorv1.0.0release 馃槈