A Kotlin library for working with GraphQL.
This project consists of multiple independent modules, each available as their own library, providing different utilities for working with GraphQL. Refer to each module's README file for module specific information.
- Specification implementation
- Lexer/Parser
- Models
- Base module
- Annotations for an annotation processor that generates a Kotlin query DSL based on a GraphQL Schema
- Responsible for creating the Kotlin query DSL
- Depends on the core and query-dsl-builder modules
- Can be called from an annotation processor, build system plugin, or compiler plugin to generate a Kotlin query DSL
- Contains utilities for helping in the creation of a Kotlin query DSL for a GraphQL Schema
- Responsible for creating a GraphQL file (.gql) from a
GraphQLSchema
model from the core module - Turns a Kotlin class into a GraphQL Schema
- Depends on the core module
- Can be called from an annotation processor, build system plugin, or compiler plugin to generate a GraphQL Schema
- A convenience Kotlin DSL for creating a
GraphQLSchema
model from the core module