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

This commit is contained in:
Harun CAN
2026-04-05 20:37:15 +03:00
parent 9f17ced37d
commit 9486f86cca
22 changed files with 2175 additions and 29 deletions

13
test-tweet.js Normal file
View File

@@ -0,0 +1,13 @@
const { PrismaClient } = require('@prisma/client');
const prisma = new PrismaClient();
async function test() {
const projects = await prisma.project.findMany({
orderBy: { createdAt: 'desc' },
take: 5
});
console.dir(projects, { depth: null });
}
test()
.catch(console.error)
.finally(() => prisma.$disconnect());