Uses of Class
org.springframework.graphql.data.query.ScrollSubrange
Packages that use ScrollSubrange
Package
Description
Resolvers for method parameters of annotated handler methods.
DataFetcher
implementations built on Spring Data
extensions such as Query by Example and Querydsl.-
Uses of ScrollSubrange in org.springframework.graphql.data.method.annotation.support
Methods in org.springframework.graphql.data.method.annotation.support that return ScrollSubrangeModifier and TypeMethodDescriptionprotected ScrollSubrange
ScrollSubrangeMethodArgumentResolver.createSubrange
(org.springframework.data.domain.ScrollPosition pos, Integer size, boolean forward) -
Uses of ScrollSubrange in org.springframework.graphql.data.query
Methods in org.springframework.graphql.data.query that return ScrollSubrangeModifier and TypeMethodDescriptionprotected ScrollSubrange
QueryByExampleDataFetcher.buildScrollSubrange
(DataFetchingEnvironment environment) protected ScrollSubrange
QuerydslDataFetcher.buildScrollSubrange
(DataFetchingEnvironment environment) Methods in org.springframework.graphql.data.query with parameters of type ScrollSubrangeModifier and TypeMethodDescriptionstatic 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, 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.QueryByExampleDataFetcher.Builder.defaultScrollSubrange
(ScrollSubrange defaultSubrange) Configure aScrollSubrange
to use when a paginated request does not specify a cursor and/or a count of items.QueryByExampleDataFetcher.ReactiveBuilder.defaultScrollSubrange
(ScrollSubrange defaultSubrange) Configure aScrollSubrange
to use when a paginated request does not specify a cursor and/or a count of items.QuerydslDataFetcher.Builder.defaultScrollSubrange
(ScrollSubrange defaultSubrange) Configure aScrollSubrange
to use when a paginated request does not specify a cursor and/or a count of items.QuerydslDataFetcher.ReactiveBuilder.defaultScrollSubrange
(ScrollSubrange defaultSubrange) Configure aScrollSubrange
to use when a paginated request does not specify a cursor and/or a count of items.