Home

Column matches a pattern


const { data, error } = await supabase
  .from('cities')
  .select('name, country_id')
  .like('name', '%la%')