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

I did config follow guide: https://vuex-orm.github.io/plugin-graphql/guide/nuxt.html When I use ``` User.fetch(); // unknown action type: entities/user/query or User.customQuery({ name: 'me'}); // unknown action type: entities/user/fetch ``` How can I fix...

Hey. I try to insert new raw in db by graphQl. =/ Model: ```javascript import { Model } from '@vuex-orm/core' export default class Categories extends Model { // This is...

My model has `ID`, but it's being stripped from the query after being built. How do I force `ID` to be a part of the query without creating a custom...

When following the Many To Many example in the docs: https://vuex-orm.github.io/plugin-graphql/guide/relationships.html#many-to-many I get the following error when using string based IDs: ```js TypeError: Cannot read property 'hasIncrementFields' of undefined ```...

- [x] Adapter Pattern to adapt for different schemas - [x] Eager Saving: #94 - [x] Support for non-integer IDs: #62 - [ ] Cleanup interfaces/types - [ ] Support...

I used the Setup instructions to try to make Vuex-Orm GraphQL Plugin work in my app, but immmediately got several errors. Vuex-ORM works already in my app, but the GraphQL...

Nice project, but how to customize adapter for handle more complex schemas : - The argument name for input in mutations (in mode type) is not necessarily identical to the...