Reactjs – Adding a One-to-Many Relationship on a Model with Compound ID in Prisma
Forgive my ignorance on creating schema. I am attempting to add a one to many relationship to a model with a compound ID. Here is that model: model UserPlantSpeciesInventoried { userId String user User @relation("user", fields: [userId], references: [id]) plantSpeciesId…