1type Todo { 2 id: ID! 3 text: String! 4 completed: Boolean! 5} 6 7type Query { 8 """ 9 Get a single Todo by its ID 10 """ 11 todo(id: ID!): Todo 12}