GenerateSDLAction

abstract class GenerateSDLAction : WorkAction<GenerateSDLParameters>

WorkAction that is used to generate GraphQL schema in SDL format.

Action is run using Gradle classloader isolation with a custom classpath that has a dependency on graphql-kotlin-sdl-generator and custom SchemaGeneratorHooks providers.

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
@get:Inject
abstract override val parameters: GenerateSDLParameters?

Functions

Link copied to clipboard
open override fun execute()

Generate GraphQL schema in SDL format.

Link copied to clipboard
@Inject
abstract fun getParameters(): GenerateSDLParameters?