GraphQL - Type Relationships
You wrote this GraphQL schema:
Why does this schema cause an error when querying books of an author?
type Author { books: Book } type Book { author: Author }Why does this schema cause an error when querying books of an author?
