const { PrismaClient } = require('@prisma/client'); const prisma = new PrismaClient(); async function main() { const records = await prisma.audioRecord.findMany({ take: 1 }); console.log('Record:', JSON.stringify(records[0], null, 2)); console.log('bookId:', records[0].bookId); } main().then(() => process.exit(0));