plugin-graphql
plugin-graphql copied to clipboard
Vuex ORM persistence plugin to sync the store against a GraphQL API.
Unfortunately, there is no support for the union type at the moment. Consider the following schema: ```graphql type LicenseValue { id: ID value: String typeObject: ParameterOptionUnion } union ParameterOptionUnion =...
Mutation response handling seems to currently assume the result is just an instance of the object type being updated. This does not, for example, allow the flexibility to implement a...
Even configuring the connectionQueryMode option for 'nodes', when I make a customQuery is sent as plain. Should be: ``` query Clients($first: Int!) { clients(first: $first) { nodes{ id name email...
I saw this from the documentation - the plugin does know of the schema of the grapheQL server. https://vuex-orm.github.io/plugin-graphql/guide/faq.html#does-vuex-orm-graphql-know-my-graphql-schema > Yes, it does! Before the first query is sent, the...
from #101: > should have a flag which simply does vuex orm .create() instead of a .insert() (would solve pagination)
I've got the same error as documented in #84. The thing is, I don't have any mutations in my schema (as I have reading access to most data on the...
If you try to filter for array items it handles the parameter as an Object, which it isn't. Example: `CarModel.dispatch('fetch', { filter: { carMake_slug_list: 'audi' }})` works fine while `CarModel.dispatch('fetch',...
It would be nice if one could overwrite the model based eagerLoad definitions in fetch(). Also to prevent eager loading of a relation.