Peter Toth
Peter Toth
Hey @flamytwista, I'm not sure if this is related but I have a quite big PR coming regarding STI mainly focused on fixing inserting/retrieving custom relationships within STI though it...
Hey, I work with STI quite a bit but I am not really sure what you are trying to achieve. Could you perhaps show us a code sample and the...
Hey @Fuzzyma, I'm using this branch on my local dev environment but I'd not recommend to use that in production. Try it out and if you find something broken please...
You actually don't need to build it again if you're using the branch I mentioned earlier. Just replace `vuex-orm` in your `package.json` like: ```json { "dependencies": { "@vuex-orm/core": "petertoth/vuex-orm#fix-custom-relationships-derived-models-dist" }...
@Fuzzyma Could you provide a code snippet with described behavior?
When I add `type` as a field in the base model, my problem still persists. These are my models: ```js import { Model } from "@vuex-orm/core"; export class Post extends...
Is this something that would require a lot of engineering effort to fix? In my project I'm inserting a deeply nested entity tree which heavily uses STI. If a derived...
Maybe too late to the party but I had the same problem. Noticed had `gem "carrierwave-crop"` before `gem "carrierwave"` inside my Gemfile. Changed the order, did `bundle install` and the...