Releases: vuex-orm/plugin-graphql
Releases · vuex-orm/plugin-graphql
v0.0.22
v0.0.21
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!
.