Documentation ¶
Index ¶
- func FixedError(err error) ent.Hook
- func If(hk ent.Hook, cond Condition) ent.Hook
- func On(hk ent.Hook, op ent.Op) ent.Hook
- func Reject(op ent.Op) ent.Hook
- func Unless(hk ent.Hook, op ent.Op) ent.Hook
- type AccountFunc
- type BlobFunc
- type BlobLinkFunc
- 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 ent.Op) Condition
- func Not(cond Condition) Condition
- func Or(first, second Condition, rest ...Condition) Condition
- type DeviceFunc
- type DocFunc
- type GroupFunc
- type IntSIDFunc
- type MixinIDFunc
- type NoteFunc
- type OtherFunc
- type PetFunc
- type RevisionFunc
- type SessionFunc
- type TokenFunc
- type UserFunc
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
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, ent.Delete|ent.Create)
Types ¶
type AccountFunc ¶ added in v0.10.1
The AccountFunc type is an adapter to allow the use of ordinary function as Account mutator.
type BlobFunc ¶
The BlobFunc type is an adapter to allow the use of ordinary function as Blob mutator.
type BlobLinkFunc ¶ added in v0.11.0
The BlobLinkFunc type is an adapter to allow the use of ordinary function as BlobLink mutator.
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 DeviceFunc ¶ added in v0.10.0
The DeviceFunc type is an adapter to allow the use of ordinary function as Device mutator.
type DocFunc ¶ added in v0.9.0
The DocFunc type is an adapter to allow the use of ordinary function as Doc mutator.
type GroupFunc ¶
The GroupFunc type is an adapter to allow the use of ordinary function as Group mutator.
type IntSIDFunc ¶ added in v0.11.0
The IntSIDFunc type is an adapter to allow the use of ordinary function as IntSID mutator.
type MixinIDFunc ¶
The MixinIDFunc type is an adapter to allow the use of ordinary function as MixinID mutator.
type NoteFunc ¶ added in v0.9.0
The NoteFunc type is an adapter to allow the use of ordinary function as Note mutator.
type OtherFunc ¶ added in v0.10.1
The OtherFunc type is an adapter to allow the use of ordinary function as Other mutator.
type RevisionFunc ¶ added in v0.11.0
The RevisionFunc type is an adapter to allow the use of ordinary function as Revision mutator.
type SessionFunc ¶ added in v0.10.0
The SessionFunc type is an adapter to allow the use of ordinary function as Session mutator.
type TokenFunc ¶ added in v0.10.1
The TokenFunc type is an adapter to allow the use of ordinary function as Token mutator.