method
JSONField.PrependHooks
PrependHooks inserts supplied callbacks before existing callbacks in each phase.
Arguments
| Argument | Type | Description |
|---|---|---|
value | Hooks[store.Value] | The value value. |
Returns
The declared result.
JSONFieldFull signature
func (f JSONField) PrependHooks(value Hooks[store.Value]) JSONFieldRelated types
JSONFieldJSONField configures a field for JSON data.
HooksHooks registers transforms and event callbacks for one field. Each list runs in declaration order for each field occurrence, including nested array rows. Collection or global hooks run first in the same phase, except AfterCommit, where field callbacks run first. Use ReadHooks for response transformations.
ValueAn immutable scalar, object, list, or populated document value.