Files
Harun CAN 7745102584
Backend Deploy 🚀 / build-and-deploy (push) Has been cancelled
main
2026-04-27 12:50:42 +02:00

21 lines
455 B
JavaScript

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();
});