GraphQL - Resolvers
If a GraphQL schema has
type Book { title: String, author: Author } and the data is { title: "Dune", author: { name: "Frank" } }, what will the default resolver return for book.author.name?