range()
Limits the result to rows within the specified range, inclusive.
1final data = await supabase
2 .from('cities')
3 .select('name, country_id')
4 .range(0,3);
Examples#
With select()
#
1final data = await supabase
2 .from('cities')
3 .select('name, country_id')
4 .range(0,3);