Flutter: Limit the query to a range

Limits the result to rows within the specified range, inclusive.

Parameters

Examples

With `select()`

final data = await supabase
  .from('countries')
  .select('name')
  .range(0, 1);