`updateMany` fails on `data` array of existing records
See original GitHub issueBug description
I’m not sure if I’m using updateMany
incorrectly but I’m experiencing an odd bug.
I have an array of model records retrieved using findMany
, updated via Array.map
, and I’m attempting to then update the records using updateMany
.
I get an error that complains about passing incorrect types to data
, but don’t see how that’s possible. My hunch is that it’s actually a problem with using updateMany
to update records with different values per record id—the documentation suggests updateMany
is better suited to update many records with the same values.
Am I using updateMany
wrong, or is this unexpected behaviour? Thanks in advance!
How to reproduce
- Run an
updateMany
query against records with specific IDs and differing values per ID - See type error
Expected behavior
Records should be updated to match the passed data
array
Prisma information
model User {
id Int @id @default(autoincrement())
bestFriendId Int?
bestFriend User? @relation(fields: [bestFriendId], references: [id])
}
const records = await prisma.user.findMany()
const updatedRecords = records.map(user => {
user.bestFriendId = findBestFriendId(user) // either an Int or null/undefined
return user
}
console.log(updatedRecords.slice(0, 2))
// [{ id: 1, bestFriendId: 3 }, { id: 2, bestFriendId: null }]
await prisma.user.updateMany({ data: updatedRecords }) // returns type error
Environment & setup
- OS: macOS
- Database: MySQL/Planetscale
- Node.js version: 16.13.0
Prisma Version
3.5.0
Issue Analytics
- State:
- Created 2 years ago
- Reactions:6
- Comments:6 (1 by maintainers)
Top Results From Across the Web
Mongoose updateMany not updating array - Stack Overflow
I have an application with 2 models: Student, Book (see below). Whenever a book is added, I would like it to be appended...
Read more >db.collection.updateMany() — MongoDB Manual
Specifically, in MongoDB 4.4 and greater, db.collection.updateMany() with upsert: true can be run on an existing collection or a non-existing collection. If run ......
Read more >MongoDB Array Update Operator - $push - w3resource
In MongoDB, the $push operator is used to appends a specified value to an array. If the mentioned field is absent in the...
Read more >How to Update millions or records in a table - Ask TOM
When done, we swap the partition of original data with the 'dummy' table (the one containing new values), rebuild indexes in parallel, and...
Read more >CRUD (Reference) - Prisma
Create a single record. The following query creates ( create ) a single user with two fields: const user = await prisma.user.create({. data:...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
The same question … Have you figured out how to use updateMany with different values per id?
I wonder if @daneden’s issue (and my issue) could be solved via a Prisma Extension.
Source: https://twitter.com/ruheni_alex/status/1592832451013128194