Package | Description |
---|---|
org.springframework.graphql.execution |
Support for GraphQL request execution, including abstractions to configure and invoke
GraphQL . |
Modifier and Type | Method and Description |
---|---|
GraphQlSource.SchemaResourceBuilder |
GraphQlSource.SchemaResourceBuilder.configureRuntimeWiring(RuntimeWiringConfigurer configurer)
Configure the underlying
RuntimeWiring.Builder to register
data fetchers, custom scalar types, type resolvers, and more. |
GraphQlSource.SchemaResourceBuilder |
GraphQlSource.SchemaResourceBuilder.defaultTypeResolver(TypeResolver typeResolver)
Configure the default
TypeResolver to use for GraphQL interface
and union types that don't have such a registration after
applying
RuntimeWiringConfigurer s. |
GraphQlSource.SchemaResourceBuilder |
GraphQlSource.SchemaResourceBuilder.schemaFactory(BiFunction<TypeDefinitionRegistry,RuntimeWiring,GraphQLSchema> schemaFactory)
Configure a function to create the
GraphQLSchema from the
given TypeDefinitionRegistry and RuntimeWiring . |
static GraphQlSource.SchemaResourceBuilder |
GraphQlSource.schemaResourceBuilder()
Return a
GraphQlSource builder that parses GraphQL Schema
resources and uses RuntimeWiring to create the
GraphQLSchema . |
GraphQlSource.SchemaResourceBuilder |
GraphQlSource.SchemaResourceBuilder.schemaResources(Resource... resources)
|