I built an app last year with Prisma V1. I want to...
# orm-help
j
I built an app last year with Prisma V1. I want to create a progress bar and I was wondering if there's a way to return data during a mutation without interrupting it so that I can create/update a progress bar on the client side? I've got a mutation in my resolvers called importOrders, which runs another mutation named createOrder that creates orders based on data from a CSV file. So, for instance, I may be running createOrder 200 times within the importOrders mutation and I want to be able to show the client how many times the createOrder mutation finished successfully. Thanks.