Heinrich Wendel

Results 6 comments of Heinrich Wendel

We are currently looking for a mock library for our new frontend project and trying to decide between miragejs vs msw +mswjs/data. @IanVS It seems you have a strong preference...

Hi gents, I have a simple DB working with mirage-js/orm which injects dynamic JSON objects and automatically creates ids. Now I'm trying to establish a relation between two entities by...

Thank you for the quick reply, that works! :) I'm also able to add a second post by doing the following: ``` const comment = comments.findFirst((q) => q.where({ text: 'First!'...

I'd probably ask: "How do other ORMs like Prisma / Drizzle" handle it? I think in their schema, one side of the relation is always defined as the default. In...

Here is what I see from Prisma (which we use for our real API): It seems to be purely query based. Meaning, any property that represents a relation needs to...

@kettanaito Do you think that the fix from unadlib is the right one to merge?