UNPKG

779 BMarkdownView Raw
1# next
2
3- Allow passing directives for the GraphQL schema to the `buildGraphQLSchema` function.
4
5# 0.7.0
6- The package now uses peer dependency
7- Updated to work with Graphql-js v15. Allows interfaces to implement other interfaces (https://github.com/sikanhe/gqtx/pull/20)
8- Simplified the ID scaler type (https://github.com/sikanhe/gqtx/pull/13)
9- Support for adding additional types not reachable from the root (https://github.com/sikanhe/gqtx/pull/16)
10
11# 0.6.0
12
13- Now type constructors must be generated using `createTypesFactory<Ctx>()` function. The benefit is that now we
14 can avoid manually asserting application `Context` type globally aross all schema types
15- Root source value is now correctly typed for Query, Mutation, and Subscription resolvers at the top level.