Tsimopak
Tsimopak
I took as a reference the source code of exceptiongroup in order to make a custom exception of my own with a custom traceback . It worked as expected, the...
In intellij, pressing on Cmd + ArrowUp will select the breadcrumbs which is the equivalent of pressing `CMD + Shift + .` in VScode
Zenstack plugin import from a npm package leads to `Cannot find model file` (although it does work when trying to do `npx zenstack generate`) **Plugin version**: v2.3.0 An easy way...
In my `schema.zmodel` I define to output the prisma client to the same dir with zenstack: ``` generator client { provider = "prisma-client-js" output = '../../lib/zenstack/prisma' } datasource db {...
`createMany` and `createManyAndReturn` misses relation attributes, although they can be used. An example, If I have the following schema: ``` model House { id Int @id @default(autoincrement()) doorTypeId Int door...
Make polymorpic models work with $extends prisma api I think it's super crucial because $extends is very popular api and I believe many people use it.
Self one to one/one to many recursive query is something that a lot of people wanted: https://github.com/prisma/prisma/issues/4562 Someone posted also an extension for it (last comment in the github issue):...
**Is your feature request related to a problem? Please describe.** The most common place to use is when trying to update the updatedByUser field, which in that case we would...
Hi, Many people including myself use Micro services architecture, not necessary as monorepo. The frontend may need to communicate with multiple micro services. In order to use frontend hooks i...
at `packages/server/src/types` there is the following type: ```js /** * API response */ export type Response = { status: number; body: unknown; }; ``` I thought maybe to add also...