0.2.2
Major Changes
None
Minor Changes
- feat: pass DataFetcherEnvironment to arguments (#173)
Clients can now specify
DataFetchingEnvironment
as one of their arguments. It will not be generated as part of the schema but will be passed down on execution and gives access to all the context of the query, parent fields and their arguments, and anything else that is on thegraphql.schema.DataFetchingEnvironment
- feat: allow directives on other types (#174)
We are noticing that not all the directives are being added to the fields on our SDL using the
graphql-java
schema printer. This add support for:
- Enums
- Interfaces
- Unions
- Mutation objects
- Query objects
- Input objects
- Type objects
Patch Changes
- fix: remove directive duplication in the generator (#176)