Spark Java
Getting started with GraphQLize in Spark Java is simple and involves only a few steps.
Adding Dependencies
Let's start with creating a new Java Project using Gradle (or Maven) and add the graphqlize-java
& the JDBC driver dependencies.
Initializing GraphQLizeResolver
To initialize GraphQLizeResolver
, we need a DataSource.
Configuring DataSource
- Postgres
- MySQL
note
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 .
With the data source in place, all we need to do is the create a new instance of GraphQLizeResolver
using it.
note
Currently, it takes around 8 to 12 seconds to initialize. I am planning to in a future release.
Adding GraphQL Endpoint
The next step is adding an API to expose the GraphQL endpoint. To do it, first, add a POJO to model the incoming GraphQL request.
Then add a new router /graphql
and deserialize the request to this GraphQLRequest
class using Jackson.
Finally, get the query & the variables from the request and invoke the resolve
method on the initialized 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
.
Test Drive
To do a test drive of this implementation, start the server and hit the endpoint via curl.
You'll get a response like below.
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 , a tool to visualize GraphQL API as an interactive graph. Adding it to our project is easy thanks to static content serve capability of Spark Java.
All you need to do is download this file and put it under the src/main/resources/public directory.
Then let the Spark Java know to use this public directory to serve static files.
When you restart the server, the Voyager will be available at http://localhost:4567/voyager.html. A sample output would look like this.
Then to interact with the GraphQL API, let's add the . Like Voyager, download this file and put in the public directory.
This GraphQL playground will be available at http://localhost:4567/playground.html after server restart.
Next Steps
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 .
note
You can also customize certain default behaviours of GraphQLize in future releases.