Nditah Samweld
03/05/2022, 11:34 AMconst 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 ?