2025-02-06 09:31:49 +01:00
|
|
|
// Code generated by ent, DO NOT EDIT.
|
2022-04-08 21:26:25 +02:00
|
|
|
|
|
|
|
package ent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"code.icod.de/postfix/manager/ent/account"
|
|
|
|
"code.icod.de/postfix/manager/ent/predicate"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
|
|
"entgo.io/ent/schema/field"
|
|
|
|
)
|
|
|
|
|
|
|
|
// AccountDelete is the builder for deleting a Account entity.
|
|
|
|
type AccountDelete struct {
|
|
|
|
config
|
|
|
|
hooks []Hook
|
|
|
|
mutation *AccountMutation
|
|
|
|
}
|
|
|
|
|
|
|
|
// Where appends a list predicates to the AccountDelete builder.
|
|
|
|
func (ad *AccountDelete) Where(ps ...predicate.Account) *AccountDelete {
|
|
|
|
ad.mutation.Where(ps...)
|
|
|
|
return ad
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exec executes the deletion query and returns how many vertices were deleted.
|
|
|
|
func (ad *AccountDelete) Exec(ctx context.Context) (int, error) {
|
2025-02-06 09:31:49 +01:00
|
|
|
return withHooks(ctx, ad.sqlExec, ad.mutation, ad.hooks)
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
|
|
func (ad *AccountDelete) ExecX(ctx context.Context) int {
|
|
|
|
n, err := ad.Exec(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return n
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ad *AccountDelete) sqlExec(ctx context.Context) (int, error) {
|
2025-02-06 09:31:49 +01:00
|
|
|
_spec := sqlgraph.NewDeleteSpec(account.Table, sqlgraph.NewFieldSpec(account.FieldID, field.TypeInt64))
|
2022-04-08 21:26:25 +02:00
|
|
|
if ps := ad.mutation.predicates; len(ps) > 0 {
|
|
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
|
|
for i := range ps {
|
|
|
|
ps[i](selector)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2025-02-06 09:31:49 +01:00
|
|
|
affected, err := sqlgraph.DeleteNodes(ctx, ad.driver, _spec)
|
|
|
|
if err != nil && sqlgraph.IsConstraintError(err) {
|
|
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
|
|
}
|
|
|
|
ad.mutation.done = true
|
|
|
|
return affected, err
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// AccountDeleteOne is the builder for deleting a single Account entity.
|
|
|
|
type AccountDeleteOne struct {
|
|
|
|
ad *AccountDelete
|
|
|
|
}
|
|
|
|
|
2025-02-06 09:31:49 +01:00
|
|
|
// Where appends a list predicates to the AccountDelete builder.
|
|
|
|
func (ado *AccountDeleteOne) Where(ps ...predicate.Account) *AccountDeleteOne {
|
|
|
|
ado.ad.mutation.Where(ps...)
|
|
|
|
return ado
|
|
|
|
}
|
|
|
|
|
2022-04-08 21:26:25 +02:00
|
|
|
// Exec executes the deletion query.
|
|
|
|
func (ado *AccountDeleteOne) Exec(ctx context.Context) error {
|
|
|
|
n, err := ado.ad.Exec(ctx)
|
|
|
|
switch {
|
|
|
|
case err != nil:
|
|
|
|
return err
|
|
|
|
case n == 0:
|
|
|
|
return &NotFoundError{account.Label}
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
|
|
func (ado *AccountDeleteOne) ExecX(ctx context.Context) {
|
2025-02-06 09:31:49 +01:00
|
|
|
if err := ado.Exec(ctx); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2022-04-08 21:26:25 +02:00
|
|
|
}
|