Skip to main content

Delete Record

This node permanently removes a record from the database.

The Delete Record node performs a delete operation on a specific ID.

The Delete Record node takes a Record Id and a Class and removes that entry from the database. This action is permanent.

Inputs

General

DataDescription
ClassThe database collection.
Record IdThe ID of the record to delete.

Actions

SignalDescription
DoTriggers the delete operation.

Outputs

Events

SignalDescription
SuccessTriggered when the record is successfully deleted.
FailureTriggered if the delete fails (e.g., permissions, not found).

Usage

Delete Button

  1. Inside a Repeater (list of items).
  2. User clicks "Delete".
  3. Connect the Item ID to Record Id.
  4. Trigger Do.
  5. The item will automatically disappear from the list (because the list observes the collection).

Detailed Behavior

  • Notification: Upon success, the node notifies the global system that this ID has been deleted. Any Filter Records or Record nodes observing this ID will update accordingly (e.g., removing it from lists).

Troubleshooting

  • Permission: Most delete failures are due to RLS (Row Level Security) policies preventing the user from deleting the record.