Skip to content

Releases: vuex-orm/plugin-graphql

v0.0.22

22 Apr 06:20
Compare
Choose a tag to compare

Changelog

Improvements

  • Better logging

Bugfixes

  • Fields ending with Id are not always ignored now

v0.0.21

16 Apr 06:32
Compare
Choose a tag to compare

Breaking Changes

Fetching multiple records with a filter will now generate a filter argument with all filter fields instead of an argument for each field:

So comments(userId: $userID) { ... } will become: comments(filter: { userId: $userID } ) { ... }.

This is also documented in the Example Queries page in the wiki.

Bugfixes

Integer arguments will now generate variable signature Int! instead of Number!.

v0.0.11

20 Mar 17:05
Compare
Choose a tag to compare

Changelog

  • Added support for eager loading

v0.0.10

20 Mar 10:20
Compare
Choose a tag to compare

Changelog

  • Some Bugfixes, optimizations and refactorings
  • More docs and updated README
  • Make API path configurable

v0.0.9

20 Mar 08:44
Compare
Choose a tag to compare

Changelog

  • Improve test coverage
  • Support for custom mutations
  • Many bugfixes, optimizations and refactorings