2022-09-12 22:47:27 +00:00
|
|
|
// Code generated by ent, DO NOT EDIT.
|
|
|
|
|
|
|
|
package ent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
|
|
"entgo.io/ent/schema/field"
|
2022-10-30 04:05:38 +00:00
|
|
|
"github.com/hay-kot/homebox/backend/internal/data/ent/attachment"
|
|
|
|
"github.com/hay-kot/homebox/backend/internal/data/ent/predicate"
|
2022-09-12 22:47:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// AttachmentDelete is the builder for deleting a Attachment entity.
|
|
|
|
type AttachmentDelete struct {
|
|
|
|
config
|
|
|
|
hooks []Hook
|
|
|
|
mutation *AttachmentMutation
|
|
|
|
}
|
|
|
|
|
|
|
|
// Where appends a list predicates to the AttachmentDelete builder.
|
|
|
|
func (ad *AttachmentDelete) Where(ps ...predicate.Attachment) *AttachmentDelete {
|
|
|
|
ad.mutation.Where(ps...)
|
|
|
|
return ad
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exec executes the deletion query and returns how many vertices were deleted.
|
|
|
|
func (ad *AttachmentDelete) Exec(ctx context.Context) (int, error) {
|
2023-01-19 05:44:06 +00:00
|
|
|
return withHooks[int, AttachmentMutation](ctx, ad.sqlExec, ad.mutation, ad.hooks)
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
|
|
func (ad *AttachmentDelete) ExecX(ctx context.Context) int {
|
|
|
|
n, err := ad.Exec(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return n
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ad *AttachmentDelete) sqlExec(ctx context.Context) (int, error) {
|
2023-02-18 06:41:01 +00:00
|
|
|
_spec := sqlgraph.NewDeleteSpec(attachment.Table, sqlgraph.NewFieldSpec(attachment.FieldID, field.TypeUUID))
|
2022-09-12 22:47:27 +00:00
|
|
|
if ps := ad.mutation.predicates; len(ps) > 0 {
|
|
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
|
|
for i := range ps {
|
|
|
|
ps[i](selector)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
affected, err := sqlgraph.DeleteNodes(ctx, ad.driver, _spec)
|
|
|
|
if err != nil && sqlgraph.IsConstraintError(err) {
|
|
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
|
|
}
|
2023-01-19 05:44:06 +00:00
|
|
|
ad.mutation.done = true
|
2022-09-12 22:47:27 +00:00
|
|
|
return affected, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// AttachmentDeleteOne is the builder for deleting a single Attachment entity.
|
|
|
|
type AttachmentDeleteOne struct {
|
|
|
|
ad *AttachmentDelete
|
|
|
|
}
|
|
|
|
|
2023-01-28 21:03:51 +00:00
|
|
|
// Where appends a list predicates to the AttachmentDelete builder.
|
|
|
|
func (ado *AttachmentDeleteOne) Where(ps ...predicate.Attachment) *AttachmentDeleteOne {
|
|
|
|
ado.ad.mutation.Where(ps...)
|
|
|
|
return ado
|
|
|
|
}
|
|
|
|
|
2022-09-12 22:47:27 +00:00
|
|
|
// Exec executes the deletion query.
|
|
|
|
func (ado *AttachmentDeleteOne) Exec(ctx context.Context) error {
|
|
|
|
n, err := ado.ad.Exec(ctx)
|
|
|
|
switch {
|
|
|
|
case err != nil:
|
|
|
|
return err
|
|
|
|
case n == 0:
|
|
|
|
return &NotFoundError{attachment.Label}
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
|
|
func (ado *AttachmentDeleteOne) ExecX(ctx context.Context) {
|
2023-01-28 21:03:51 +00:00
|
|
|
if err := ado.Exec(ctx); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2022-09-12 22:47:27 +00:00
|
|
|
}
|