Is there an efficient way to do a bulk upsert? ult...
# prisma-client
s
Is there an efficient way to do a bulk upsert? ultimately I would like to do a
createMany
-- but there is a chance that some rows will duplicate on unique constraint. In those cases I'd like it to just be graceful eg. skip that row or update etc. The best idea i have is to run many concurrent upsert operations, but this could be very inefficient with thousands of rows.