What is GraphQL? Will it Replace REST API?

GraphQL with SpringBoot and Maven

Ruby Valappil
Javarevisited
Published in
5 min readMay 18, 2022

--

Photo by Annie Spratt on Unsplash

What is GraphQL?

GraphQL is a query language that’s used to query APIs. It also provides the runtime for fulfilling the queries.

GraphQL uses a simple query (not JSON) to query the data on the server-side and returns the response in JSON format.

--

--