reading the docs, but not seeing anything about re...
# prisma-client
m
reading the docs, but not seeing anything about retires
j
You would be expected to implement retries yourself, Prisma does not help you there by design.
You can do so either manually in your code, or use a middleware on Prisma level to rerun the query or command when a specific error happens.
(Not 100% sure if
$connect()
is covered by the middleware though... good thing to investigate)