Files
ContentGen_BE/test.js
T
Harun CAN 5f78ce274e
Backend Deploy 🚀 / build-and-deploy (push) Has been cancelled
main
2026-04-09 12:04:27 +03:00

10 lines
311 B
JavaScript

const { PrismaClient } = require('@prisma/client');
const prisma = new PrismaClient();
async function main() {
const proj = await prisma.project.findFirst({
where: { id: "3cbc524a-c536-4706-b531-39053c0cd7a1" }
});
console.log(proj);
}
main().catch(console.error).finally(() => prisma.$disconnect());