James Meneghello
James Meneghello
> > /duplicate > > [microsoft/vscode#174632](https://github.com/microsoft/vscode/issues/174632) > > As a workaround please set `"extensions.verifySignature": false` setting under `customizations.vscode.settings` in devcontainer.json > > So I tried this with 1.88 and it...
@MoSattler I think the use of `await prisma.$transaction` in your example is problematic? Since it would be accessing the original client, not the extended client. This is what I came...
Actually, one issue I'm now handling is that any query errors are instead thrown as client extension errors, e.g.: ``` PrismaClientExtensionError: Error caused by an extension: Invalid `this.prisma.authed().posts.update()` invocation in...
I mean, that's shared schema multitenancy for you, really. A bit of pain here, or pain on the deployment end when deploying an environment-per-tenant (or pain when migrating schema-per-tenant), or...