So this is basically what I've got right now (`Ans...
# prisma-whats-new
m
So this is basically what I've got right now (
Answer
model and relations excluded):
Copy code
type Quiz @model {
  name: String!
  questions: [Question!]! @relation(name: "QuizQuestions")
}

type Question @model {
  text: String!
  quizzes: [Quiz!]! @relation(name: "QuizQuestions")
}
m
you can assign each one of them propery
index
for example and then use
order_by
in your query 🙂