GraphQL books API made using Spring Boot. This is a sibling project of the Book Project.
Prerequisites:
- JDK 11 or higher
- Configure Lombok
- Import as a Maven project into your favourite IDE
- Run the app
- Go to
localhost:8080/playground
Sample query:
{
findAllBooks {
title
authors {
firstName
lastName
}
genre
isbn13
yearOfPublication
publishedBy
format
}
}
To visualise the schema, go to localhost:8080/voyager
. You will also need to comment out the maxQueryDepth
line in
application.properties.
If you wish to contribute (thanks!), please first see the contributing document.