Documentation ¶
Index ¶
- func FixedError(err error) entv1.Hook
- func If(hk entv1.Hook, cond Condition) entv1.Hook
- func On(hk entv1.Hook, op entv1.Op) entv1.Hook
- func Reject(op entv1.Op) entv1.Hook
- func Unless(hk entv1.Hook, op entv1.Op) entv1.Hook
- type CarFunc
- type Chain
- type Condition
- func And(first, second Condition, rest ...Condition) Condition
- func HasAddedFields(field string, fields ...string) Condition
- func HasClearedFields(field string, fields ...string) Condition
- func HasFields(field string, fields ...string) Condition
- func HasOp(op entv1.Op) Condition
- func Not(cond Condition) Condition
- func Or(first, second Condition, rest ...Condition) Condition
- type ConversionFunc
- type CustomTypeFunc
- type UserFunc
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func FixedError ¶
FixedError is a hook returning a fixed error.
func If ¶
If executes the given hook under condition.
hook.If(ComputeAverage, And(HasFields(...), HasAddedFields(...)))
func On ¶
On executes the given hook only for the given operation.
hook.On(Log, entv1.Delete|entv1.Create)
Types ¶
type Chain ¶
type Chain struct {
// contains filtered or unexported fields
}
Chain acts as a list of hooks and is effectively immutable. Once created, it will always hold the same set of hooks in the same order.
func (Chain) Append ¶
Append extends a chain, adding the specified hook as the last ones in the mutation flow.
type Condition ¶
Condition is a hook condition function.
func HasAddedFields ¶
HasAddedFields is a condition validating `.AddedField` on fields.
func HasClearedFields ¶
HasClearedFields is a condition validating `.FieldCleared` on fields.
type ConversionFunc ¶
The ConversionFunc type is an adapter to allow the use of ordinary function as Conversion mutator.
type CustomTypeFunc ¶
The CustomTypeFunc type is an adapter to allow the use of ordinary function as CustomType mutator.