Class ScrollSubrange

java.lang.Object
org.springframework.graphql.data.pagination.Subrange<org.springframework.data.domain.ScrollPosition>
org.springframework.graphql.data.query.ScrollSubrange

public final class ScrollSubrange extends Subrange<org.springframework.data.domain.ScrollPosition>
Container for parameters that limit result elements to a subrange including a relative ScrollPosition, number of elements, and direction.

For backward pagination, the offset of an OffsetScrollPosition is adjusted to point to the first item in the range by subtracting the count from it. Hence, for OffsetScrollPosition Subrange.forward() is always true.

Since:
1.2.0
Author:
Rossen Stoyanchev, Oliver Drotbohm
  • Constructor Details

  • Method Details

    • create

      public static ScrollSubrange create(@Nullable org.springframework.data.domain.ScrollPosition position, @Nullable Integer count, boolean forward)
      Create a ScrollSubrange instance.
      Parameters:
      position - the position relative to which to scroll, or null for scrolling from the beginning
      count - the number of elements requested
      forward - whether to return elements after (true) or before (false) the element at the given position
      Returns:
      the created subrange
      Since:
      1.2.4