plugin-graphql
plugin-graphql copied to clipboard
Vuex ORM persistence plugin to sync the store against a GraphQL API.
Hi! thank you for awesome library! I found below bug. When deleted the data in backend, plugin-graphql doesn't remove data from Vuex store on secondary fetch. ### Reproduce step As...
I'm attempting to use this plugin with Parse Server. I am able to get it working for simple field types. However, the plugin does not seem to work with the...
During the setup of my first vuex-orm project with graphql I could not find a good example on how to `$persist()` records with many-to-many relationships. For example the documentation says...
Hi please I'm trying to return data from a custom query but the Type being generated by the plugin is wrong My vue store index.js `import Vue from "vue"; import...
Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7. Commits c74c8af 1.3.7 024b8b5 update deps, add linting 032fbaf Use Object.create(null) to avoid default object property hazards 2da9039 1.3.6 cfea636 better git push script,...
The 'fetch' is not exists on Model. For example, as it shown [here](https://vuex-orm.github.io/plugin-graphql/guide/fetch.html#fetching-a-single-record) in manuals: ```ts await Comment.fetch('42'); // Unsafe call of an any typed value. // or await Comment.fetch({...
The Apollo-Client supports Optimistic UI. It would be nice when this plugin would support that too. We have to think about what this means and how this support could look...
Well this is originally for #147, that since Hasura released its v1.3.0 it had [beta support for Relay-styled query](https://hasura.io/docs/1.0/graphql/manual/schema/relay-schema.html), so using `ConnectionMode.EDGES` almost worked out of the box! The problem...
In source file plugin-graphql/blob/master/src/graphql/query-builder.ts, function name buildQuery(...). I don't think this uppcaseFirstLetter(name) should be used here. It appears to be changing a value set by a custom adapter. ` //...