From 254abe5f4826bcf746200e3bf22b55977b5dcd02 Mon Sep 17 00:00:00 2001 From: multipliedtwice Date: Mon, 7 Oct 2024 00:14:31 +0700 Subject: [PATCH] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2b049ef..57ce131 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,10 @@ This tool helps you quickly create API endpoints in your Express app using your Prisma models. -When you run `npx prisma generate`, it automatically: +Exposes Prisma API to clients - all operations with database is available, including all relationships at any depth. + +When you run `npx prisma generate`, it will: -- Exposes Prisma API to clients - all operations with database is available, including all relationships at any depth. - Generates service functions that you can import into your Express routes. - Router generator function that lets you select which routes to enable in your express app and which middlewares to apply.