GraphQL - Resolvers
You want to fetch a list of books with their authors' names using nested resolvers. The
Book type has an authorId field, and the Author type has id and name. How should you use the parent argument in the author resolver inside Book to get the correct author name?