Skip to main content

range()

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

final res = await supabase
.from('cities')
.select('name, country_id')
.range(0,3)
.execute();

Examples

With select()

final res = await supabase
.from('cities')
.select('name, country_id')
.range(0,3)
.execute();