mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 03:46:52 +00:00
fix(docs): broken syntaxes
This commit is contained in:
@@ -84,17 +84,17 @@ The current row data and other details will be available in the hooks payload so
|
||||
For a table with column names (id, title, created_at, updated_at).
|
||||
For INSERT/ UPDATE based triggers, use following handlebars to access corresponding **data** fields.
|
||||
|
||||
- {{ **data**.id }}
|
||||
- {{ **data**.title }}
|
||||
- {{ **data**.created_at }}
|
||||
- {{ **data**.updated_at }}
|
||||
- `{{ **data**.id }}`
|
||||
- `{{ **data**.title }}`
|
||||
- `{{ **data**.created_at }}`
|
||||
- `{{ **data**.updated_at }}`
|
||||
|
||||
Note that, for Update trigger - all the fields in the ROW will be accessible, not just the field updated.
|
||||
For DELETE based triggers, **only** {{ data.id }} is accessible representing ID of the column deleted.
|
||||
For DELETE based triggers, **only** `{{ data.id }}` is accessible representing ID of the column deleted.
|
||||
|
||||
### JSON format
|
||||
|
||||
Use {{ json data }} to dump complete data & user information available in JSON format
|
||||
Use `{{ json data }}` to dump complete data & user information available in JSON format
|
||||
|
||||
### Additional references:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user