Skip to content

Releases: vuex-orm/plugin-graphql

v1.0.0-rc.12

19 Jul 08:41
Compare
Choose a tag to compare
v1.0.0-rc.12 Pre-release
Pre-release

Changelog

Bugfixes

  • Better determination of argument types #41

v1.0.0-rc.11

18 Jul 07:42
Compare
Choose a tag to compare
v1.0.0-rc.11 Pre-release
Pre-release

Changelog

General

  • Upgraded to Vuex-ORM 0.25.6

v1.0.0-rc.10

06 Jul 15:56
Compare
Choose a tag to compare
v1.0.0-rc.10 Pre-release
Pre-release

Changelog

General

  • Upgrade to Vuex-ORM 0.25.4

Features

  • One can now pass a Apollo HttLink instance to the options. This is a undocumented feature

Bugfixes

  • Removed the Symbols from the return value of simpleQuery and simpleMutation
  • Fixed the introspection query and type detection
  • Fixed object/array detection
  • Fixed list types in query signatures

Internal

  • Some Refactorings
  • Smaller Improvements of the Test Suite
  • The test suite now uses a SchemaLink instead of mocking the server responses

v1.0.0-rc.9

28 Jun 09:30
Compare
Choose a tag to compare
v1.0.0-rc.9 Pre-release
Pre-release

Changelog

Bugfixes

  • Fix connection detection for polymorphic relations
  • Fix int coercion of ID fields

Internal

  • Upgrade dependencies

v1.0.0-rc.8

21 Jun 09:35
Compare
Choose a tag to compare
v1.0.0-rc.8 Pre-release
Pre-release

Changelog

Features

Bugfixes

  • Fix in the recursion detection of the query builder

Internal

  • Added more tests

v1.0.0-rc.7

18 Jun 10:52
Compare
Choose a tag to compare
v1.0.0-rc.7 Pre-release
Pre-release

Changelog

Bugfixes

  • Fix eagerLoading

v1.0.0-rc.6

15 Jun 11:16
Compare
Choose a tag to compare
v1.0.0-rc.6 Pre-release
Pre-release

Changelog

Features

  • The plugin now loads the GraphQL Schema and extracts useful information of it. See docs for details

Internal

  • Bugfixes for the test suite
  • Improvements of the docs

v1.0.0-rc.5

14 Jun 07:26
Compare
Choose a tag to compare
v1.0.0-rc.5 Pre-release
Pre-release

Changelog

Bugfixes

  • Fix build after renaming

v1.0.0-rc.4

14 Jun 06:48
Compare
Choose a tag to compare
v1.0.0-rc.4 Pre-release
Pre-release

Changelog

Breaking Changes

  • Renamed the plugin to Vuex-ORM-GraphQL / @vuex-orm/plugin-graphql

Internal

  • Some documentation changes
  • Fix coverage reporting

v1.0.0-rc.3

11 Jun 06:12
Compare
Choose a tag to compare
v1.0.0-rc.3 Pre-release
Pre-release

Changelog

Breaking Changes

The call syntax for custom queries and mutations changed:

  • $customQuery({ query: 'example' }) -> $customQuery({ name: 'example' })

  • customQuery({ query: 'example', id: post.id }) -> customQuery({ name: 'example', filter: { id: post.id } })

  • $mutate({ mutation: 'upvotePost' }) -> $mutate({ name: 'upvotePost' })

  • mutate({ mutation: 'upvotePost', id: post.id }) -> mutate({ name: 'upvotePost', args: { id: post.id } })

Bugfixes

  • Fixed the detection of deprecated records after $persist()
  • Fixed a promise issue within the code

Features

  • Allow to set multiple field for custom queries and mutations.

Documentation

  • Added Multiple or single record section to custom mutations and queries chapter.