Experimenting with GraphQL and Apollo Server
npm install && npm run start
query Books {
books {
id
title
author {
id
name
}
}
}
query Book {
book(id: "1") {
id
title
author {
id
name
}
}
}
Thanks to @andreribeirosilva for contributing.