Yiming Cao
Yiming Cao
Vite 3.0 is officially out. Please upgrade nxext/vite peer dependency. Thanks!
Hi, It seems that the link on homepage is broken: http://github-tools.github.io/github/docs/3.4.0/index.html
Closes # ## 🎯 Changes Add `AnyProcedureBuilder` type export for properly typing a procedure builder. Useful for declaring factory functions that take `t.procedure` (or a custom procedure made out of...
Hi, Docusaurus2 has this nice thing called ["magic comments"](https://docusaurus.io/docs/markdown-features/code-blocks#line-highlighting) that adds styling to code blocks (like line highlighting etc.) with comments. It seems that whenever I enable shiki-twoslash plugin, magic...
[ZenStack](https://github.com/zenstackhq/zenstack) is a toolkit that supercharges Prisma with a powerful access control layer and unlocks its full potential for web development.
Closes # ## 🎯 Changes What changes are made in this PR? Is it a feature or a bug fix? ## ✅ Checklist - [ x] I have followed the...
### Bug description The Prisma `find` API allows the use of relation fields in the `orderBy` clause. However, it rejects the query when a regular field and a relation field...
In V2, declarations are only resolved from directly imported schema files. This is generally fine, except for `auth()` - you'll need to import the schema containing `User` or `@@auth` model...

```prisma model M1 { id String @id @default(uuid()) value Int m2 M2? @@allow('read', true) @@allow('update', value > 0 && future().m2.m3?[value > 0]) } model M2 { id String @id @default(uuid())...