What's the preferred method to create multiple ent...
# orm-help
j
What's the preferred method to create multiple entities at once in Prisma2? Just call
create
multiple times in a
Promise.all?
r
You could do that and also a batch insert raw query if you prefer those. There’s also an open request that you can follow here.
j
I am using connectOrCreate to do something similar