question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

`updateMany` fails on `data` array of existing records

See original GitHub issue

Bug 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

  1. Run an updateMany query against records with specific IDs and differing values per ID
  2. 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:open
  • Created 2 years ago
  • Reactions:6
  • Comments:6 (1 by maintainers)

github_iconTop GitHub Comments

3reactions
Andy671commented, Jan 9, 2022

The same question … Have you figured out how to use updateMany with different values per id?

0reactions
heymartinadamscommented, Nov 16, 2022

I wonder if @daneden’s issue (and my issue) could be solved via a Prisma Extension.

FhrfI4TWIAYNClq

Source: https://twitter.com/ruheni_alex/status/1592832451013128194

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found