Verron K
Verron K
If you are using Vue 3 (and especially if you are using vue apollo 4 composables), I highly recommend checking out [typed-document-node](https://github.com/dotansimha/graphql-code-generator/tree/master/packages/plugins/typescript/typed-document-node) [documentation](https://www.graphql-code-generator.com/plugins/typescript/typed-document-node). It is a more generic way to...
Opened a PR to support new vue/vue-apollo versions: https://github.com/equalogic/vue-apollo-smart-ops/pull/161 Hopefully the maintainer is able to review. Just FYI, it is possible to [provide a custom source to import operations from](https://github.com/dotansimha/graphql-code-generator/blob/master/packages/plugins/typescript/vue-apollo-smart-ops/src/config.ts#L56)....
Discontinued my effort to update vue-apollo-smart-ops because I am using apollo composable. IMO, [typed-document-node](https://github.com/dotansimha/graphql-code-generator/tree/master/packages/plugins/typescript/typed-document-node) [documentation](https://www.graphql-code-generator.com/plugins/typescript/typed-document-node) should be used instead as it will be supported by most popular graphql libraries (easy...
In older versions of API Platform (pre 3.*), a field of 'id' was automatically added to graphql mutations not named 'create'. This was removed via https://github.com/api-platform/core/pull/5359. You could try adding...
Confirmed that @fazulk suggestion worked. To clarify, install `@vue/typescripot-plugin`. Npm Example: ```shell npm i -D @vue/typescript-plugin ``` Add the plugin to your `compilerOptions`. Example tsconfig.json with only the plugin. Make...