mickdekkers
12/20/2017, 7:07 PMAnswer
model and relations excluded):
type Quiz @model {
name: String!
questions: [Question!]! @relation(name: "QuizQuestions")
}
type Question @model {
text: String!
quizzes: [Quiz!]! @relation(name: "QuizQuestions")
}
matic
12/20/2017, 8:53 PMindex
for example and then use order_by
in your query 🙂