I have a schema something like this
type Todo { title: String! completed: Boolean! list: List } type List { title: String! todos: [Todo] @relation } t