Concept Flow - Prisma Client usage
Import PrismaClient
Create PrismaClient instance
Call Prisma methods (e.g., findMany)
Receive data from DB
Use data in app (e.g., return response)
Disconnect PrismaClient when done
This flow shows how to import, create, use, and disconnect Prisma Client in a NestJS app to interact with the database.