main
Backend Deploy 🚀 / build-and-deploy (push) Has been cancelled

This commit is contained in:
Harun CAN
2026-04-09 12:04:27 +03:00
parent 6627c213ec
commit 5f78ce274e
11 changed files with 381 additions and 107 deletions
+9
View File
@@ -0,0 +1,9 @@
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());