GraphQL in simple terms is a querying language for your API that lets the client i.e UI query on the data fetched by the API. GraphQL is not tied to any database it is instead linked to your API data, which API might have fetched from the database. Thus Graphql could easily be integrated with…
Category: Java
Spring Boot Get Started Guide To REST API
Spring Boot has got immense popularity lately, since what it brings to table is far comprehensive. In this article you will learn how you can get started with Spring Boot with as minimal setup and build REST API with snap of a finger. Spring provides a utility https://start.spring.io/ to create a spring boot project. It…