1type Todo { 2 id: ID! 3 text: String! 4 done: Boolean! 5 user: User! 6} 7 8type User { 9 id: ID! 10 name: String! 11}
View as plain text