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

This commit is contained in:
Harun CAN
2026-04-27 12:50:42 +02:00
parent 9d8c34b39d
commit 7745102584
11 changed files with 3909 additions and 23 deletions
+20
View File
@@ -0,0 +1,20 @@
const { PrismaClient } = require('./node_modules/@prisma/client');
const prisma = new PrismaClient();
async function main() {
const scene = await prisma.scene.findFirst({
where: {
id: "02123cc4-b110-454e-8869-0dbe594cdc61" // from the logs
},
include: {
mediaAssets: true
}
});
console.dir(scene, { depth: null });
}
main()
.catch(e => console.error(e))
.finally(async () => {
await prisma.$disconnect();
});