Run the project
./mvnw spring-boot:runNavigate to http://localhost:8080/graphiql
Example query:
query bookDetails {
bookById(id: "book-1") {
id
name
pageCount
author {
id
firstName
lastName
}
}
}Run all test suite
./mvnw testRun the BookController test
./mvnw -Dtest=BookControllerTest test