Kotlin: Limit the query to a range

Limit the query result by from and to inclusively.

Parameters

Examples

With `select()`

supabase.from("countries").select \{
    range(1L..5L)
\}