Mike Rudge
Mike Rudge
Prisma has just released 3.10.0 which has support for mongodb embedded docs. ``` model Product { id String @id @default(auto()) @map("_id") @db.ObjectId name String photos Photo[] } type Photo {...
[Prisma 3.3.0 has been released](https://github.com/prisma/prisma/releases/tag/3.3.0) with two major features we have been waiting for. 1) Support for MongoDB 5, which means we can use a serverless db, perfect fit for...
We are looking for a way to customise which CRUD operations are created on a per model basis. For example, We might not want to offer a delete mutations at...
Hey! I have a growing list of routes and would love to be able to separate the routes into separate files. Ideally, I think I would like to be able...
if I have this import ```ts import { Button } from '@/components/ui/button' ``` Then it works fine in the file 'app/page.tsx' `app/hello/page.tsx` etc However, if I have `app/(test)/test/page.tsx` I get...