com.auritylab.graphql.kotlin.toolkit.spring.schema.SchemaAugmentation.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot Show documentation
Show all versions of spring-boot Show documentation
GraphQL integration for Spring
package com.auritylab.graphql.kotlin.toolkit.spring.schema
import graphql.schema.GraphQLSchema
interface SchemaAugmentation {
fun augmentSchema(existingSchema: GraphQLSchema, transform: GraphQLSchema.Builder)
}