Releases: vuex-orm/plugin-graphql
Releases · vuex-orm/plugin-graphql
v1.0.0-rc.12
v1.0.0-rc.11
Changelog
General
- Upgraded to Vuex-ORM 0.25.6
v1.0.0-rc.10
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
Changelog
Bugfixes
- Fix connection detection for polymorphic relations
- Fix int coercion of ID fields
Internal
- Upgrade dependencies
v1.0.0-rc.8
Changelog
Features
- The plugin now can handle different connection query modes, see https://vuex-orm.github.io/vuex-orm-graphql/guide/connection-mode/
Bugfixes
- Fix in the recursion detection of the query builder
Internal
- Added more tests
v1.0.0-rc.7
Changelog
Bugfixes
- Fix eagerLoading
v1.0.0-rc.6
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
Changelog
Bugfixes
- Fix build after renaming
v1.0.0-rc.4
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
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.