Marco Wettstein
Marco Wettstein
> @macrozone Thanks for you're work on picking up and maintaining this package. I've recently begun to utilize this package but am looking into making some changes to allow me...
I general, you can't automatically search and sort by computed fields. If you would want to, you would have to define the "reverse-function" of the render (or the helper in...
What I found out is, that structureHash is called as soon as the rendering and loading is started. It then fetches data from the table, finds a page 0 and...
Hi dragouf, thx for your help. I tried it out but it does not work for me. when the data function is called, the page-param is already set back to...
In my case I use a custom ajax-function, so yes, this would lead to issues ;-) I also have seen, that the plugin resets the url-params before the ajax.data function...
it would also help that the vscode prisma package would help to migrate this to be honest, i'll stick with preview24 for the time beeing Edit: further, the vscode plugin...
~also you should really update the documentation as soon as possible, it looks like its very outdated: https://github.com/prisma/prisma2/blob/master/docs/relations.md#the-relation-attribute~ edit: sorry, did not saw the new website: https://www.prisma.io/reference/tools-and-interfaces/prisma-schema/relations
> I agree while we removed some limitations needed for a "correct" implementation, we unfortunately took a step back in terms of conciseness and elegance. > > We'll look into...
> You guys should take a page out of Rails's playbook, they're pretty elegant when it comes to defining relations like this with the user doing the least amount of...
short question: > ``` > model Post { > id Int @id @default(autoincrement()) > author User @relation(fields: [authorId], references: [author]) > authorId Int // relation scalar field > } >...