Thomas Georgiadis
03/17/2021, 10:56 PMconst update = await prisma.user.update({
where: {
id: 6,
},
data: {
posts: {
update: [
{
where: {
id: 9,
},
data: {
title: 'Posts 9 title',
},
},
{
where: {
id: 10,
},
data: {
title: 'Post 10 title is different',
},
},
]
},
},
})