
Joshua Clounch
March 28, 2025
On a recent project, I was tasked with creating a new administration site to replace a piece of a monolithic legacy application. The legacy system did not have any API’s that we could reuse. We were going to have to create the API’s from scratch. Since the data would probably be needed elsewhere during the rewrite of the entire application I really wanted it to be able to reuse the data. With a traditional REST API, when you hit an endpoint you get exactly the structure it was programmed to give you. What happens if I need more data for the other functions or less data. I would have to either make another request or create a new endpoint to solve the problem. One of the huge problems plaguing the legacy application is that the speed of the application was terrible and there are literally pages that have 150 server calls. My goal was to provide a new system that was quick and that would require less rework throughout the process of moving other services out of the legacy application I came across GraphQL several months ago and decided that it was not just cool but provided some simplifications to creating API’s and web development in general. GraphQL is a query language for your API originally developed by Facebook. It has many advantages over a simple REST API. One of the huge advantages to GraphQL is that you have just one API endpoint and the client posts a query or mutation to get the exact result that you need. Here is a short list of why you should use GraphQL for your next API.