Hi all, I'm trying to `updateMany` but with unique...
# orm-help
d
Hi all, I'm trying to
updateMany
but with unique data per row... I'm beginning to think this isn't possible with that API. Should I instead be using
upsert
API for this?
👀 1
n
Hi @David Ilizarov 👋 updateMany would not be suitable in this use case as you have unique data per row, it would have been useful if you needed to update the same data. You would need to perform individual update queries, you can wrap them in a $transaction if the calls are dependent on each other