Skip to content

v0.18.0

Compare
Choose a tag to compare
@jasonkuhrt jasonkuhrt released this 12 Nov 14:14

Breaking Changes

Remove resolver shorthands

#592f609380

Resolver shorthand API is now removed. The following will now not typecheck:

t.string('foo', () => ... )

Instead use:

t.string('foo', { resolve: () => ... })

Runtime support is still intact but will result in a logged warning. Runtime support will be removed in the next Nexus release.


Remove dynamic output builtins

9f01342#590

ext is no longer exported. The relayConnectionField and collectionField dynamic output methods have been removed. In their place try the connection plugin.



All Changes

Features

  • b19e83e Allow specifying a node module for type imports (#604)

Fixes

Improvements

  • f609380 (breaking) remove resolver shorthands (#592)
  • 9f01342 (breaking) remove dynamic output builtins (#590)

Docs

Chores