this application is example of springboot with graphql
installed postgres on your computer
- http://localhost:8080/graphql
{ allBooks { isbn title publisher } }
- http://localhost:8080/fidnbyid
{ "query": "query GetBookById($id: ID!) { findOne(id: $id) { isbn title publisher } }", "variables": { "id": 1 } }