Uses of Interface
org.springframework.graphql.execution.RuntimeWiringConfigurer
Packages that use RuntimeWiringConfigurer
Package
Description
Resolvers for method parameters of annotated handler methods.
DataFetcher
implementations built on Spring Data
extensions such as Query by Example and Querydsl.Support for GraphQL request execution, including abstractions to configure and invoke
GraphQL
.-
Uses of RuntimeWiringConfigurer in org.springframework.graphql.data.method.annotation.support
Classes in org.springframework.graphql.data.method.annotation.support that implement RuntimeWiringConfigurerModifier and TypeClassDescriptionclass
RuntimeWiringConfigurer
that finds@SchemaMapping
annotated handler methods in@Controller
classes declared in Spring configuration, and registers them asDataFetcher
s. -
Uses of RuntimeWiringConfigurer in org.springframework.graphql.data.query
Methods in org.springframework.graphql.data.query that return RuntimeWiringConfigurerModifier and TypeMethodDescriptionstatic RuntimeWiringConfigurer
QueryByExampleDataFetcher.autoRegistrationConfigurer
(List<org.springframework.data.repository.query.QueryByExampleExecutor<?>> executors, List<org.springframework.data.repository.query.ReactiveQueryByExampleExecutor<?>> reactiveExecutors) Return aRuntimeWiringConfigurer
that installs aWiringFactory
to find queries with a return type whose name matches to the domain type name of the given repositories and registersDataFetcher
s for them.static RuntimeWiringConfigurer
QuerydslDataFetcher.autoRegistrationConfigurer
(List<org.springframework.data.querydsl.QuerydslPredicateExecutor<?>> executors, List<org.springframework.data.querydsl.ReactiveQuerydslPredicateExecutor<?>> reactiveExecutors) Return aRuntimeWiringConfigurer
that installs aWiringFactory
to find queries with a return type whose name matches to the domain type name of the given repositories and registersDataFetcher
s for them. -
Uses of RuntimeWiringConfigurer in org.springframework.graphql.execution
Methods in org.springframework.graphql.execution with parameters of type RuntimeWiringConfigurerModifier and TypeMethodDescriptionGraphQlSource.SchemaResourceBuilder.configureRuntimeWiring
(RuntimeWiringConfigurer configurer) Configure the underlyingRuntimeWiring.Builder
to register data fetchers, custom scalar types, type resolvers, and more.