I'm having some weird behavior here, it's probably...
# prisma-client
e
I'm having some weird behavior here, it's probably me misunderstanding Prisma client. Can someone explain to me the following?
Copy code
const { prisma } = require('../src/generated/prisma')

prisma.updateManyPosts({ /* ... */ }).then() // Works
prisma.updateManyPosts({ /* ... */ }) // Doesn't get executed
}