plugin-graphql icon indicating copy to clipboard operation
plugin-graphql copied to clipboard

Vuex ORM persistence plugin to sync the store against a GraphQL API.

Results 71 plugin-graphql issues
Sort by recently updated
recently updated
newest added

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...

enhancement
help wanted
discussion

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,...

dependencies

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({...

We should support GraphQL Subscriptions

enhancement

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...

enhancement
help wanted
discussion

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. ` //...