In the previous chapters, you saw how to implement a RESTful API using Spring Boot. This chapter will teach you how to work with GraphQL using Spring Boot.
Introduction to GraphQL
First, let’s understand GraphQL and why you need it. GraphQL is a query language that gives you the power to ask exactly what you want as a response from the server and nothing more. When you are already building REST APIs, it’s pretty common that ...