GraphQL - Type Relationships
Given this GraphQL schema snippet:
What will the query
type Author {
id: ID!
books: [Book!]!
}
type Book {
id: ID!
title: String!
author: Author!
}What will the query
{ author(id: "1") { books { title } } } return if author 1 has two books titled "A" and "B"?