On this pagerange()Limits the result to rows within the specified range, inclusive.final res = await supabase .from('cities') .select('name, country_id') .range(0,3) .execute();ExamplesWith select()final res = await supabase .from('cities') .select('name, country_id') .range(0,3) .execute();