graphql.kickstart.tools.SchemaObjects.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphql-java-tools Show documentation
Show all versions of graphql-java-tools Show documentation
Tools to help map a GraphQL schema to existing Java objects.
package graphql.kickstart.tools
import graphql.schema.GraphQLCodeRegistry
import graphql.schema.GraphQLObjectType
import graphql.schema.GraphQLSchema
import graphql.schema.GraphQLType
/**
* @author Andrew Potter
*/
data class SchemaObjects(
val query: GraphQLObjectType,
val mutation: GraphQLObjectType?,
val subscription: GraphQLObjectType?,
val dictionary: Set,
val codeRegistryBuilder: GraphQLCodeRegistry.Builder,
val description: String?
) {
/**
* Makes a GraphQLSchema with query, mutation and subscription.
*/
fun toSchema(): GraphQLSchema {
return GraphQLSchema.newSchema()
.description(description)
.query(query)
.mutation(mutation)
.subscription(subscription)
.additionalTypes(dictionary)
.codeRegistry(codeRegistryBuilder.build())
.build()
}
/**
* Makes a GraphQLSchema with query but without mutation and subscription.
*/
fun toReadOnlySchema(): GraphQLSchema = GraphQLSchema.newSchema()
.description(description)
.query(query)
.additionalTypes(dictionary)
.build()
}