SmallRye GraphQL
SmallRye GraphQL is an implementation of Eclipse MicroProfile GraphQL.
Instructions
Testing against the released v 1.0.3 of MicroProfile GraphQL
mvn clean install
Testing against the unreleased v 1.1-SNAPSHOT of MicroProfile GraphQL
(You need to build that version of MicroProfile GraphQL locally first to make the snapshot versions available in your repository)
mvn clean install -Dversion.eclipse.microprofile.graphql=1.1-SNAPSHOT
Project structure
Common
-
Schema Model (Serializable) that defines the schema.
-
Schema Builder that create the model from Jandex.
Server
-
API (pulling in the MicroProfile API) and allowing us to experiment with api feature not yet in the spec. Code from here might move the the spec at some point.
-
Implementation of the Eclipse MicroProfile GraphQL API.
-
CDI Module that allows lookup of GraphQL Endpoints via CDI
-
Servlet Making the implementation available via Servlet
-
TCK Test suite to run the implementation against the Eclipse MicroProfile GraphQL TCK.
-
Runner Manual TCK testing with GraphiQL
-
IT To run some Integration tests
Client
-
Client API (pulling in the MicroProfile Client API) and allowing us to experiment with api feature not yet in the spec. Code from here might move the the spec at some point.
-
Client Implementation of the Eclipse MicroProfile GraphQL Client API.
-
Client TCK Test suite to run the client-implementation against the Eclipse MicroProfile GraphQL Client TCK.
Tools
-
Maven plugin that generates the GraphQL schema from source files.
-
Gradle plugin that generates the GraphQL schema from source files.
UI
-
GraphiQL UI for your project