PageParam

sealed class PageParam<out T>

Sealed type for representing the next or previous page param in infinite queries. Use Value to signal that a page is available to fetch, and None to signal that no more pages exist in that direction.

Inheritors

Types

Link copied to clipboard
Link copied to clipboard
data class Value<T>(val value: T) : PageParam<T>