Limit the query to a range
Limits the result to rows within the specified range, inclusive.
final data = await supabase
.from('cities')
.select('name, country_id')
.range(0,3);
Limits the result to rows within the specified range, inclusive.
final data = await supabase
.from('cities')
.select('name, country_id')
.range(0,3);
Not to worry, our specialist engineers are here to help. Submit a support ticket through the Dashboard.