Yiming Cao
Yiming Cao
Hi @olehmelnyk , it's a great idea. Right now, the focus of ZenStack is still on the core runtime and integrations with major frameworks, but I do see this as...
> I'm currently looking into this same concept in conjunction with replacing our current class generation plugin `prisma-nestjs-graphql` as the original author appears to have other priorities, and it's not...
> My idea is to create a more generic Class generator that can itself utilize plugins that visit different parts of the class before and during creation. These visitors could...
Hi @vbg8exadel , sorry for the late response. I understand it's not convenient. One possible solution is to put the deployment URI into an environment variable and use it to...
Maybe we're not too far from this rule? > at least 2000 files per extension indexed in the last year (the number you see at the top of the search...
This always happens when people use soft-delete, because when you do a "delete" with "update", the result is always non-readable.
Hey @Val0429 , thanks for bringing this up! I wasn't aware enum is missing for SQLSever too ... Really inconvenient for me at least working with sqlite. Using an attribute...
Thanks for the detailed breakdown! Really appreciate it. One of the first things that needs to be done is to interfere with how Prisma generates its TS types (those under...
Just realized to do that we need to change `enhance` to an async API. It'll be a breaking change. Punting to V2.
> > const db = enhance(prisma, { user: ..., softDelete: true }); > > It would be specifically cool if we can have softDelete without enhance/an alternative function that doesn't...