Kotlin: Limit the query to a range

Limit the query result by from and to inclusively.

Parameters

Examples

With select()

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