Implement RETURNING on `updateMany`
See original GitHub issueHi there. Currently methods like updateOne and findOne takes only unique attributes in the where clause. The problem is, you need not always have a unique/primary key on a record which you want to find.
Its inconvenient since I have to use methods like updateMany
when doing this which does not return me the updated records, but just the count. Also due to the fact that composite primary keys are not implemented yet (https://github.com/prisma/photonjs/issues/339) its kind of inconvenient since a single column is many times not unique.
Right now, when using updateMany
, I have to do updateMany
to first update the records and then a findMany
query to get the records leading to 2 queries since when doing updates, you often don’t receive all inputs from users but only specific fields they want to update, but you want all the results as the response post the update.
Issue Analytics
- State:
- Created 4 years ago
- Reactions:61
- Comments:23 (4 by maintainers)
Can we please stick to using the lovely “👍” reaction on the top post instead of posting
+1
? This will be more respectful of those that are subscribed to these issue and wish to be aware of any useful update.Thank you
Hi. I need this RETURNING option too.