This repo contains a simple Spring Boot (2.x) service that implements GraphQL API. The implementation is based on graphql-java-tools a GraphQL java library inspired by Apollo.
- graphql-java-common - GraphQL implementation which is a schema first implementation of GraphQL.
- graphql-spring-boot - A Spring Boot Starter for GraphQL.
- Spring Boot 2.x
The application implements GraphQL on top of JPA repositories. The application provides basic functionality to store Person and Notes.
The graphQL API contains queries, mutations and subscriptions. For more details have a look at the schema
Pull and run the image.
docker run -d --name grapql-demo -p 8088:8080 npalm/graphql-java-demo
The following endpoints are now available:
- http://localhost:8080/graphiql - A graphical interactive in-browser GraphQL IDE.
- http://localhost:8080/ - A simple reacte
- ws://localhost:8080/subscriptions
Once the application is running point a browser to http://localhost:8080/graphiql. Which will open the GraphQL IDE. Here you can simple enter GraphQL queries. Since GraphQL is based on a schema you have completion features and documentation directly available in the browser.

The response should like as follow.
"Your subscription data will appear here after server publication!"
Finally make a comment via a mutation in a new browser window. Find a talkId in the result of the first query.
Have now a look on the subscription window, here the update should be visible.
Be aware that the React app is not part of this repo but linked as a GIT submodule. Either clone the repo with --recurse-submodules or after checkout run git submodule update --init --recursive to update the module.
To build the Java application just run:
./gradlew build
To run the application run.
./gradlew bootRun
To run the React app:
cd react-web
yarn && yarn start
The Docker file build both the Java and React app to a single Jar and package the in a docker image.
Build image
docker build -t grahpql-demo .
Run the container
docker run -it --rm -p 8080:8080 graphql-demo
Now the container should be running and you can play around with GraphQL.
