Lars-Jørgen Kristiansen
type User { id: ID! @id todos: [Todo!]! } type Todo { id: ID! @id author: User! @relation(type: TABLE) }
INLINE