Hi Everyone, Please I need help seeding my databas...
# prisma-client
n
Hi Everyone, Please I need help seeding my database. 1. * Country: 250 2. * State: 4,888 3. * City: 20,000
Copy code
const countries = await prisma.locationCountry.createMany({
    data: countryArray,
    skipDuplicates: true,
  });
Country has 250 records and it loads well. States and Cities record break along the line. Is there a limit to records that can be seeded in Nestjs + Prisma ?
🍿 1