JavaScript: Limit the query to a range

Examples

With `select()`

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