GQL-Java is a builder-style DSL for assembling GraphQL queries in Java code. It's designed to let you define static elements and assemble them just-in-time. This is much easier to refactor a client call than static final String query constants.
These instructions will give you a quick overview of how to use GQL-Java to build queries and structure your project for maximum reuse.
Java 8+
Use the "Download" link above to link to the Bintray repo with instructions on including in your Maven pom or Gradle build.
We use SemVer for versioning. For the versions available, see the tags on this repository.
- Dave Brown - Initial work - bangroot
See also the list of contributors who participated in this project.
This project is licensed under the Apache 2.0 License - see the LICENSE.md file for details
- I wanted something like gql for JS. While this is not using a templating engine and what not, I was aiming for similar construction and reuse.