Home

Limit the query to a range


const { data, error } = await supabase
  .from('cities')
  .select('name, country_id')
  .range(0,3)