Uses of Interface
org.springframework.graphql.execution.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
Modifier and TypeClassDescriptionclass
RuntimeWiringConfigurer
that finds@SchemaMapping
and@BatchMapping
methods in@Controller
classes, and registers them asDataFetcher
s. -
Uses of RuntimeWiringConfigurer in org.springframework.graphql.data.query
Modifier and TypeMethodDescriptionstatic RuntimeWiringConfigurer
QueryByExampleDataFetcher.autoRegistrationConfigurer
(List<org.springframework.data.repository.query.QueryByExampleExecutor<?>> executors, List<org.springframework.data.repository.query.ReactiveQueryByExampleExecutor<?>> reactiveExecutors) Variation ofQueryByExampleDataFetcher.autoRegistrationConfigurer(List, List, CursorStrategy, ScrollSubrange)
without aCursorStrategy
and defaultScrollSubrange
.static RuntimeWiringConfigurer
QueryByExampleDataFetcher.autoRegistrationConfigurer
(List<org.springframework.data.repository.query.QueryByExampleExecutor<?>> executors, List<org.springframework.data.repository.query.ReactiveQueryByExampleExecutor<?>> reactiveExecutors, CursorStrategy<org.springframework.data.domain.ScrollPosition> cursorStrategy, ScrollSubrange defaultScrollSubrange) 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) Variation ofQuerydslDataFetcher.autoRegistrationConfigurer(List, List, CursorStrategy, ScrollSubrange)
without aCursorStrategy
and defaultScrollSubrange
.static RuntimeWiringConfigurer
QuerydslDataFetcher.autoRegistrationConfigurer
(List<org.springframework.data.querydsl.QuerydslPredicateExecutor<?>> executors, List<org.springframework.data.querydsl.ReactiveQuerydslPredicateExecutor<?>> reactiveExecutors, CursorStrategy<org.springframework.data.domain.ScrollPosition> cursorStrategy, ScrollSubrange defaultScrollSubrange) 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
Modifier and TypeMethodDescriptionGraphQlSource.SchemaResourceBuilder.configureRuntimeWiring
(RuntimeWiringConfigurer configurer) Configure the underlyingRuntimeWiring.Builder
to register data fetchers, custom scalar types, type resolvers, and more.