Given schema: ```model User { id In...
# orm-help
b
Given schema:
Copy code
model User {
  id              Int       @id @default(autoincrement())
  name            String
  description    String
}
I would expect to be able to update User description by running:
Copy code
prisma.name.update({
      where: {
        name,
      },
      data: {
        description: 'Update'
      },
    });
1