/awesome-graphql-java

awesome list of graphql-java related projects

Awesome graphql-java Awesome

Libraries and projectes related to graphql-java

Inspired by the awesome list thing.

Examples

Schema Libraries

Schema First

  • GraphQL Java Generator is a maven plugin that has two modes :

    • The Client mode generates the Java classes that contains methods to call the GraphQL endpoint , and the POJO that will contain the data returned by the server.

    • The Server mode generates the boilerplate code for graphql-java. It's an accelerator that makes it easier to use graphql-java. You'll only have to implement what's specific to your server, which are the joins between the GraphQL types.

  • graphql-apigen: Generate Java APIs with GraphQL Schemas

  • graphql-java-tools: A schema-first tool for graphql-java inspired by graphql-tools for JS

  • graphql-java-codegen-maven-plugin: Maven plugin for generating Java types and Resolver interfaces. Works perfectly in conjunction with graphql-java-tools.

  • graphql-java-codegen-gradle-plugin: Gradle plugin for generating Java types and Resolver interfaces. Works perfectly in conjunction with graphql-java-tools.

  • rdbms-to-graphql: A Java CLI program that generates a GraphQL schema from a JDBC data source.

  • graphql-schema-from-introspection-generator: A Java CLI program that generates a GraphQL schema from Introspection Query result. Useful for migration from Code First.

  • graphql-braid: Schema stitching - combines GraphQL backends into one schema.

  • test-graphql-java: A simple library to help testing the GraphQL endpoint with schema files using any HTTP Client library.

Code First

Execution Strategies

  • graphql-rxjava: An execution strategy that makes it easier to use rxjava's Observable

  • graphql-java-reactive: An execution strategy which is based on Reactive Streams. Project is evolving.

Exposing a Schema

Batch Loading

Scalars

Tools

License

CC0

To the extent possible under law, the contributors have waived all copyright and related or neighboring rights to this work.