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