Documentation
¶
Index ¶
- func FixedError(err error) db.Hook
- func If(hk db.Hook, cond Condition) db.Hook
- func On(hk db.Hook, op db.Op) db.Hook
- func Reject(op db.Op) db.Hook
- func Unless(hk db.Hook, op db.Op) db.Hook
- type BalanceSnapshotFunc
- type BillingCustomerOverrideFunc
- type BillingInvoiceFunc
- type BillingInvoiceItemFunc
- type BillingProfileFunc
- type BillingWorkflowConfigFunc
- 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 db.Op) Condition
- func Not(cond Condition) Condition
- func Or(first, second Condition, rest ...Condition) Condition
- type CustomerFunc
- type CustomerSubjectsFunc
- type EntitlementFunc
- type FeatureFunc
- type GrantFunc
- type NotificationChannelFunc
- type NotificationEventDeliveryStatusFunc
- type NotificationEventFunc
- type NotificationRuleFunc
- type UsageResetFunc
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, db.Delete|db.Create)
Types ¶
type BalanceSnapshotFunc ¶
The BalanceSnapshotFunc type is an adapter to allow the use of ordinary function as BalanceSnapshot mutator.
type BillingCustomerOverrideFunc ¶
type BillingCustomerOverrideFunc func(context.Context, *db.BillingCustomerOverrideMutation) (db.Value, error)
The BillingCustomerOverrideFunc type is an adapter to allow the use of ordinary function as BillingCustomerOverride mutator.
type BillingInvoiceFunc ¶
The BillingInvoiceFunc type is an adapter to allow the use of ordinary function as BillingInvoice mutator.
type BillingInvoiceItemFunc ¶
The BillingInvoiceItemFunc type is an adapter to allow the use of ordinary function as BillingInvoiceItem mutator.
type BillingProfileFunc ¶
The BillingProfileFunc type is an adapter to allow the use of ordinary function as BillingProfile mutator.
type BillingWorkflowConfigFunc ¶
type BillingWorkflowConfigFunc func(context.Context, *db.BillingWorkflowConfigMutation) (db.Value, error)
The BillingWorkflowConfigFunc type is an adapter to allow the use of ordinary function as BillingWorkflowConfig 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 CustomerFunc ¶
The CustomerFunc type is an adapter to allow the use of ordinary function as Customer mutator.
type CustomerSubjectsFunc ¶
The CustomerSubjectsFunc type is an adapter to allow the use of ordinary function as CustomerSubjects mutator.
type EntitlementFunc ¶
The EntitlementFunc type is an adapter to allow the use of ordinary function as Entitlement mutator.
type FeatureFunc ¶
The FeatureFunc type is an adapter to allow the use of ordinary function as Feature mutator.
type GrantFunc ¶
The GrantFunc type is an adapter to allow the use of ordinary function as Grant mutator.
type NotificationChannelFunc ¶
type NotificationChannelFunc func(context.Context, *db.NotificationChannelMutation) (db.Value, error)
The NotificationChannelFunc type is an adapter to allow the use of ordinary function as NotificationChannel mutator.
type NotificationEventDeliveryStatusFunc ¶
type NotificationEventDeliveryStatusFunc func(context.Context, *db.NotificationEventDeliveryStatusMutation) (db.Value, error)
The NotificationEventDeliveryStatusFunc type is an adapter to allow the use of ordinary function as NotificationEventDeliveryStatus mutator.
type NotificationEventFunc ¶
The NotificationEventFunc type is an adapter to allow the use of ordinary function as NotificationEvent mutator.
type NotificationRuleFunc ¶
The NotificationRuleFunc type is an adapter to allow the use of ordinary function as NotificationRule mutator.
type UsageResetFunc ¶
The UsageResetFunc type is an adapter to allow the use of ordinary function as UsageReset mutator.