Richard Browne
Richard Browne
I had a similar issue and eventually found that the `--legacy-peer-deps` flag was necessary. i.e. ```bash $ npm install @vue/apollo-composable --save --legacy-peer-deps ``` I'm sure if it will solve your...
For anyone using the `spatie/laravel-multitenancy` package with multiple databases, I found that a simple "workaround" was to alter the `database.php` config file and set a specific `connections.{tenant}.database` value to one...
@bretto36 Yeah and that seems to work as well on the spatie package too (though a few issues here or there) - just have to keep remembering to run the...
@Arcesilas I had the same question and when I looked into the source for the ```DocsParser.prototype.format_function``` function definition, I noticed that there's this code at line 140: ``` if (this.editor_settings.auto_add_method_tag)...
Sorry all, this seems to be an issue with my `schema` file. I originally had: ```gql restoreModel(id: ID! @globalId @rules(apply: ["required"])): Model @restore(model: "App\\Models\\Model") ``` When I should have had:...
@spawnia thanks for looking into this. The issue is the same if you use the `@globalId` on a delete mutation too. I originally had the delete with the `globalId: true`...
@luisdalmolin Thanks 👍 I've added some dummy vendor package language files to the test suite and then extended the existing tests to ensure that they now pass. The only one...
> Any update on this? @rabrowne85 @manojVivek No real update - there is one outstanding issue that I've had on the back burner which is keeping the views in sync...
@manojVivek I've managed to get the preload to work and as such the browserSync also works. I see that the `test` workflow fails as it's using node 16 - any...
@manojVivek Any thoughts on the questions of whether to go v2 and/or adjust the config of the GitHub action? Would be good to get this in for review and merged...