My model is something like this: ``` type Question...
# prisma-whats-new
r
My model is something like this:
Copy code
type Question @model {
  id: ID! @isUnique
  survey: Survey! @relation(name: "SurveyQuestions")
  title: String!
  type: QuestionType
  config: JSON
  answers: [Answer!] @relation(name: "QuestionAnswers")
}
`