Limits the result to rows within the specified range, inclusive.
The starting index from which to limit the result.
The last index to which to limit the result.
Set this to limit rows of referenced tables instead of the parent table.
final data = await supabase
.from('countries')
.select('name')
.range(0, 1);