Can someone enlight what I'm missing here?
For reference:
Copy code
model Kind {
id String @id @default(uuid())
code String @unique
@@map("kind")
}
n
Nurul
03/28/2022, 7:36 AM
Hey Andre 👋
Welcome to Prisma’s Slack community
It would be helpful if you can share your prisma schema and query which you are trying to invoke, from the error message it likely seems that you are passing more than one unique attribute in the where clause.