Error when seeding a relationship using Prisma 5 and JavaScript
I am trying to seed my prisma db but am having trouble doing so with a user -> Payment relation. Seeder Code: export const userSeeder = async (prisma) => { const productIds = await getProductIds(prisma); const { gamingLaptopProductId, chairProductId, cologneProductId,…