Skip to content

Releases: mickhansen/graphql-sequelize

v0.21.0

08 Mar 07:50
Compare
Choose a tag to compare

Adds custom node type resolvers

v0.19.0

21 Jan 13:40
Compare
Choose a tag to compare

adds support for edgeFields
see graphql-sequelize relay connection docs: https://github.com/mickhansen/graphql-sequelize/blob/master/docs/relay.md#connections

v0.18.0

20 Jan 20:25
Compare
Choose a tag to compare

sequelizeConnection now also returns a resolveEdge method that can be passed a mode instance to help with resolving edges in mutation.

No good solution for how to handle cursors yet (#118) so resolveEdge currently generates a cursor with the default order by argument defined on the connection (id by default).

v0.17.0

19 Jan 14:47
Compare
Choose a tag to compare

It's now possible to disable resolver attribute filtering with resolver.attributeFiltering = false or resolver(Target, {attributeFiltering: false}).

Usefull to support non-sequelize defined graphql fields that have dependencies.

v0.16.3

15 Jan 20:03
Compare
Choose a tag to compare
  • fix: properly support model relay connections (via model target and before)

v0.15.0

27 Nov 09:32
Compare
Choose a tag to compare

added support for connectionFields and adding where queries to connections

v0.12.0

19 Oct 17:47
Compare
Choose a tag to compare
  • attributeFields map and globalId options

v0.11.2

13 Oct 10:00
Compare
Choose a tag to compare

Now supports nested includes for nested connections.
Practically this means that only a single query should be executed for nested connections (if possible) rather than 1+N.

v0.10.0

23 Sep 06:12
Compare
Choose a tag to compare

Adds fragment support #25

v0.9.0

22 Sep 07:28
Compare
Choose a tag to compare

Fixes ENUM type naming.
Adds preliminary Relay connection support, see PR/tests for documentation #18