Prisma-like ORM built on top of Deno KV. Allows you to write your database schemas and relations using Zod schemas, and run queries using familiar syntax from Prisma.
```ts await db.offices.update({ where: { name: "o1" }, data: { address: "o1a", }, }) console.log( await db.offices.findMany({ where: { name: "o1" } }) ) // GOOD: [{ id: "XXX", address: "o1a", ... }] console.log( await db.offices.findMany({ where: {} }) ) // BAD: [{ id: "XXX", ... }] ``` Is that intended?
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by dvv and has received 1 comments.