Owner:
Jeon JaeHyeong
Generates GraphQL SDL types and enums from a database schema through jOOQ meta
https://github.com/tinywind/GRAPHQL-SCHEMA-GENERATOR
Sources: https://github.com/tinywind/GRAPHQL-SCHEMA-GENERATOR
Version 0.1.0 (latest)
Created 19 September 2026.
Generates GraphQL SDL types and enums from a database schema through jOOQ meta
Add this plugin to your build using the plugins DSL:
plugins {
id("org.tinywind.graphql-schema-generator") version "0.1.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("org.tinywind.graphql-schema-generator:org.tinywind.graphql-schema-generator.gradle.plugin:0.1.0") }It can then be applied in the precompiled script plugin:plugins { id("org.tinywind.graphql-schema-generator") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.tinywind.graphql-schema-generator:org.tinywind.graphql-schema-generator.gradle.plugin:0.1.0") } } apply(plugin = "org.tinywind.graphql-schema-generator") - Applying plugins to all subprojects .