plugin-graphql
plugin-graphql copied to clipboard
Vuex ORM persistence plugin to sync the store against a GraphQL API.
Bumps [hosted-git-info](https://github.com/npm/hosted-git-info) from 2.8.8 to 2.8.9. Changelog Sourced from hosted-git-info's changelog. 2.8.9 (2021-04-07) Bug Fixes backport regex fix from #76 (29adfe5), closes #84 Commits 8d4b369 chore(release): 2.8.9 29adfe5 fix: backport...
Bumps [ssri](https://github.com/npm/ssri) from 6.0.1 to 6.0.2. Changelog Sourced from ssri's changelog. 6.0.2 (2021-04-07) Bug Fixes backport regex change from 8.0.1 (b30dfdb), closes #19 Commits b7c8c7c chore(release): 6.0.2 b30dfdb fix: backport...
I'm trying to understand without digging deeply what exactly following method returns: `this.$store.$db().model("someModel").all()` I would expect as based on familiarity with Redux that this will be pure object literal only...
When I get data from the server all ObjectId cuts because of this method. For example "6018b21ff77a7f08047de270" become "6018" And `id: this.string()` in vuex-orm models doesn't help! https://github.com/vuex-orm/plugin-graphql/blob/b6a878d4d8aed66a8634eb846f3894cac4d2e65f/src/support/utils.ts#L140 Why the...
I dont know why I cant persist and object... I got: fetch, push and destroy works well. ``` vuex-orm-graphql.es5.js?8eb2:1 Uncaught (in promise) TypeError: Cannot convert undefined or null to object...
Hasura has their own style of writing queries: https://hasura.io/docs/1.0/graphql/manual/queries/query-filters.html Here's an example adapter to adapt some compatibility with Hasura: ```ts export class CustomAdapter extends DefaultAdapter { public getRootMutationName: () =>...
Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.3 to 6.5.4. Commits 43ac7f2 6.5.4 f4bc72b package: bump deps 441b742 ec: validate that a point before deriving keys e71b2d9 lib: relint using eslint 8421a01 build(deps): bump...
 **As you can see in the image above:** The variable `is_create_update_xero` is not in the variable definitions of updateUser. Here is the code that I use: ```js async updateUser...
if you mutate an object and after it gets mutated by setting a field null, it is ignored by vuex orm and maintains previous non null state. Example: I have...
#### Describe the bug when id type is string, it shows NaN after persist #### Steps to reproduce the bug i have this model import { Model as ORMModel }...