Appearance
postInsert
The postInsert hook is executed after a row has been inserted. It allows developers to run custom logic once the insert is complete.
Parameters
| Parameter | Type | Description |
|---|---|---|
| getColumnValue | function | See getColumnValue(columnName) |
Return Value
None
✨ Example of a postInsert Hook
This example calls a global function to perform additional tasks after a row has been inserted.
js
((table, app) => {
sendAdminMail(rowId)
})