import { PrismaClient } from "@prisma/client"; const prisma = new PrismaClient(); async function main() { // ... you will write your Prisma Client queries here console.log("Hello world!!"); } main() .catch((e) => { throw e; }) .finally(async () => { await prisma.$disconnect(); });