2022-08-30 18:04:50 +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/group"
|
|
|
|
"github.com/hay-kot/homebox/backend/internal/data/ent/predicate"
|
2022-08-30 18:04:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// GroupDelete is the builder for deleting a Group entity.
|
|
|
|
type GroupDelete struct {
|
|
|
|
config
|
|
|
|
hooks []Hook
|
|
|
|
mutation *GroupMutation
|
|
|
|
}
|
|
|
|
|
|
|
|
// Where appends a list predicates to the GroupDelete builder.
|
|
|
|
func (gd *GroupDelete) Where(ps ...predicate.Group) *GroupDelete {
|
|
|
|
gd.mutation.Where(ps...)
|
|
|
|
return gd
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exec executes the deletion query and returns how many vertices were deleted.
|
|
|
|
func (gd *GroupDelete) Exec(ctx context.Context) (int, error) {
|
2023-01-19 05:44:06 +00:00
|
|
|
return withHooks[int, GroupMutation](ctx, gd.sqlExec, gd.mutation, gd.hooks)
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
|
|
func (gd *GroupDelete) ExecX(ctx context.Context) int {
|
|
|
|
n, err := gd.Exec(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return n
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gd *GroupDelete) sqlExec(ctx context.Context) (int, error) {
|
2023-02-18 06:41:01 +00:00
|
|
|
_spec := sqlgraph.NewDeleteSpec(group.Table, sqlgraph.NewFieldSpec(group.FieldID, field.TypeUUID))
|
2022-08-30 18:04:50 +00:00
|
|
|
if ps := gd.mutation.predicates; len(ps) > 0 {
|
|
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
|
|
for i := range ps {
|
|
|
|
ps[i](selector)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
affected, err := sqlgraph.DeleteNodes(ctx, gd.driver, _spec)
|
|
|
|
if err != nil && sqlgraph.IsConstraintError(err) {
|
|
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
|
|
}
|
2023-01-19 05:44:06 +00:00
|
|
|
gd.mutation.done = true
|
2022-08-30 18:04:50 +00:00
|
|
|
return affected, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// GroupDeleteOne is the builder for deleting a single Group entity.
|
|
|
|
type GroupDeleteOne struct {
|
|
|
|
gd *GroupDelete
|
|
|
|
}
|
|
|
|
|
2023-01-28 21:03:51 +00:00
|
|
|
// Where appends a list predicates to the GroupDelete builder.
|
|
|
|
func (gdo *GroupDeleteOne) Where(ps ...predicate.Group) *GroupDeleteOne {
|
|
|
|
gdo.gd.mutation.Where(ps...)
|
|
|
|
return gdo
|
|
|
|
}
|
|
|
|
|
2022-08-30 18:04:50 +00:00
|
|
|
// Exec executes the deletion query.
|
|
|
|
func (gdo *GroupDeleteOne) Exec(ctx context.Context) error {
|
|
|
|
n, err := gdo.gd.Exec(ctx)
|
|
|
|
switch {
|
|
|
|
case err != nil:
|
|
|
|
return err
|
|
|
|
case n == 0:
|
|
|
|
return &NotFoundError{group.Label}
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
|
|
func (gdo *GroupDeleteOne) ExecX(ctx context.Context) {
|
2023-01-28 21:03:51 +00:00
|
|
|
if err := gdo.Exec(ctx); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2022-08-30 18:04:50 +00:00
|
|
|
}
|