This repository contains a Galleon feature pack to add the MicroProfile GraphQL subsystem to WildFly. Galleon is the tool we use internally to build the WildFly server. See the Galleon documentation for more background about the concepts.
To view the mapping between feature pack versions and supported WildFly versions, see the Supported versions and future versions roadmap page.
To install the feature pack you need to download Galleon (use the 4.x series)
and unzip it somewhere. From now on we assume that you have added the resulting galleon-x.y.z.Final/bin/
folder
to your path.
The easiest way to install a WildFly Server with MicroProfile GraphQL support is (Download provision.xml first):
galleon.sh provision /path/to/provision.xml --dir=wildfly
See Installation guide for more details.
For development purposes, one way to obtain a WildFly distribution with a snapshot of this feature pack installed is to simply build the contents of this repository.
After building (mvn clean install
), it will appear under build/target/wildfly-$VERSION. The Galleon definition of what will be included can be found in build/pom.xml
.
You can also build a server by using the wildfly plugin, maybe even in dev
mode. See the Quickstart for details.
Take a look at our Quickstart for examples of how to use MicroProfile GraphQL in your applications.
The microprofile-graphql
layer from this feature pack is contained in the
feature-pack/src/main/resources/layers/standalone
folder.
The microprofile-graphql
layer installs the microprofile-graphql-smallrye
subsystem, so you can use
the MicroProfile GraphQL APIs
from your application.
- Generally, only a single GraphQL deployment on one WildFly instance is supported. Multiple deployments may work, but there is a danger that they will interfere with each other in some ways, breaking the functionality as well as potentially introducing security issues.
- EAR deployments are not supported