GraphQL is revolutionising the way developers build APIs. It lets you query precisely what you want. Nothing more, nothing less! It also gives you the flexibility to query related objects in a single round trip, unlike the REST APIs.
In this blog post, I am going to introduce GraphQLize, a JVM library for developing GraphQL API server instantly from any Postgres and MySQL databases.
In a nutshell, it aims to simplify the effort required to expose GraphQL APIs over relational databases.
In the JVM ecosystem, developing GraphQL APIs to expose the data from the relational databases requires a lot of manual work. Right from defining the GraphQL schemas (either code-first or schema-first) to wiring them with resolvers and the database access logic, we spend a significant amount of our development time.
In addition to this, we also need to take care of optimising the underlying SQL queries to avoid problems like N+1 queries. We have to account the maintenance of the resulting codebase as well!
GraphQLize will help you to overcome all these shortcomings. It provides you with an efficient GraphQL implementation in just a few lines of code.
GraphQLize is a JVM library written in Clojure with Java interoperability. The crux of GraphQLize is generating the GraphQL schema and resolving the queries by making use of JDBC metadata provided by the JDBC drivers.
It currently supports Postgres (9.4 & above) and MySQL (8.0 & above).
One of the core design goals of GraphQLize is not to tie to any web development framework and remain as a drop-in JVM library in any JVM languages like Java, Scala, Clojure or Kotlin.
Getting started with GraphQLize is simple and involves only a few steps.
The actual implementation of these steps will vary based on which language (Java, Kotlin, Clojure, Scala) and framework (Spring Boot, Ktor, Pedestal, Scalatra, etc.).
In this blog post, we are going to look at how to use GraphQLize in a Java spring-boot project to build a GraphQL API.
As we typically do, let's go to Spring Initializr and create a Java project with Web & JPA as dependencies. This documentation uses this Spring Initializr template.
Adding Dependencies
The first step is to add the
graphqlize-java
& the JDBC driver dependencies.Initialising GraphQLizeResolver
The next step is initialising
GraphQLizeResolver
. To do it, let's a create new file GraphQLizeResolverProvider.java and add the following code to expose the GraphQLizeResolver
as a spring-boot bean.package org.graphqlize.java.springboot;
import org.graphqlize.java.GraphQLizeResolver;
import org.springframework.context.annotation.Bean;
import org.springframework.stereotype.Component;
import javax.sql.DataSource;
@Component
public class GraphQLizeResolverProvider {
private final DataSource dataSource;
private final GraphQLizeResolver graphQLizeResolver;
public GraphQLizeResolverProvider(DataSource dataSource) {
this.dataSource = dataSource;
graphQLizeResolver = new GraphQLizeResolver(dataSource);
}
@Bean
public GraphQLizeResolver graphQLizeResolver() {
return this.graphQLizeResolver;
}
}
During initialisation, the
GraphQLizeResolver
reads the metadata of the database using the JDBC metadata APIs and keeps an in-memory representation of them.To configure the DataSource, let's add the following properties in the application.properties file.
For Postgres,
spring.datasource.url=jdbc:postgresql://localhost:5432/sakila
spring.datasource.username=postgres
spring.datasource.password=postgres
For MySQL,
spring.datasource.url=jdbc:mysql://localhost:3306/sakila
spring.datasource.username=root
spring.datasource.password=mysql
Make sure you are changing the above values to refer your database connection. The above example assumes that you are using the sakila database created from this JOOQ's example repository.
Adding GraphQL Endpoint
The final step is exposing an API endpoint for handling the GraphQL request. To do it, let's create a new file GraphQLController.java and do the following.
package org.graphqlize.java.springboot;
import org.graphqlize.java.GraphQLResolver;
import org.springframework.http.*;
import org.springframework.web.bind.annotation.*;
import java.util.Map;
class GraphQLRequest {
private String query;
private Map<String, Object> variables;
// ... Getters & Setters are ignored for brevity
}
@RestController
public class GraphQLController {
private final GraphQLResolver graphQLResolver;
public GraphQLController(GraphQLResolver graphQLResolver) {
this.graphQLResolver = graphQLResolver;
}
@PostMapping("/graphql")
public ResponseEntity handle(@RequestBody GraphQLRequest graphQLRequest) {
String result =
graphQLResolver.resolve(
graphQLRequest.getQuery(),
graphQLRequest.getVariables());
return ResponseEntity.ok()
.header(HttpHeaders.CONTENT_TYPE, "application/json")
.body(result);
}
}
Handling the GraphQL request is as simple as highlighted above.
Get the query & the variables from the request and invoke the
resolve
method on the initialised instance of GraphQLizeResolver
.It returns the
result
as stringified JSON, and we are sending it as response body with the content type as application/json
.To do a test drive of this implementation, start the server and hit the endpoint via curl.
> curl -X POST \
--data '{"query": "query { actorByActorId(actorId: 1){firstName}}"}' \
-H "Content-Type: application/json" \
http://localhost:8080/graphql
You'll get a response like below.
{
"data": {
"actorByActorId": {
"firstName": "PENELOPE"
}
}
}
GraphQL Playground and Voyager
With the GraphQL endpoint up and running, the next step is introspecting the GraphQL schema and try out some more queries.
To introspect, we are going to make use of Voyager, a tool to visualise GraphQL API as an interactive graph. Adding it to our project is easy thanks to static content serve capability of Spring Boot.
All you need to do is download this voyager.html file and put it under the src/main/resources/static directory.
When you restart the server, the Voyager will be available at http://localhost:8080/voyager.html. A sample output would look like this.
Then to interact with the GraphQL API, let's add the GraphQL Playground. Like Voyager, download this playground.html file and put in the static directory.
This GraphQL playground will be available at http://localhost:8080/playground.html after server restart.
Congrats! You are on course to build impressive applications using GraphQLize in less time. To save yourself some more time, do refer this documentation to know more about how GraphQLize generates the GraphQL schema and the queries.
The sample code is available in this GitHub Repository.
In this blog post, we experience a glimpse of how GraphQLize can simplify your efforts in creating GraphQL API to expose the data from Postgres or MySQL.
GraphQLize is at its early stages now and lacks some critical features to call it production-ready. In the next few months it should be ready for real-world use cases.
You can keep track of the progress by
⭐️ If you like GraphQLize, give it a star on GitHub! ⭐️
Previously published at https://dev.to/tamizhvendan/graphql-with-java-spring-boot-and-postgres-or-mysql-made-easy-3p9n