I am using Prisma2+GraphQL and I would like to write schema.prisma
this is my code below
model Message {
id Int @id @default(autoincrement())
text String
from User
to User
room Room
createdAt DateTime @default(now())
User User @relation("from", fields:[from], references:[id])
User User @relation("to", fields:[to], references:[id])
}
and I got an error like Field "User" is already defined on model "Message".
My Question is How can I relate from & to columns to User in prisma2?
Here is the right way to do the relation between
User
andMessages
.