JavaScript: Delete data

Examples

Delete records

const { data, error } = await supabase
  .from('cities')
  .delete()
  .match({ id: 666 })