88 lines
2.2 KiB
Go
88 lines
2.2 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"tss-rocks-be/ent/permission"
|
|
"tss-rocks-be/ent/predicate"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
// PermissionDelete is the builder for deleting a Permission entity.
|
|
type PermissionDelete struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *PermissionMutation
|
|
}
|
|
|
|
// Where appends a list predicates to the PermissionDelete builder.
|
|
func (pd *PermissionDelete) Where(ps ...predicate.Permission) *PermissionDelete {
|
|
pd.mutation.Where(ps...)
|
|
return pd
|
|
}
|
|
|
|
// Exec executes the deletion query and returns how many vertices were deleted.
|
|
func (pd *PermissionDelete) Exec(ctx context.Context) (int, error) {
|
|
return withHooks(ctx, pd.sqlExec, pd.mutation, pd.hooks)
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (pd *PermissionDelete) ExecX(ctx context.Context) int {
|
|
n, err := pd.Exec(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (pd *PermissionDelete) sqlExec(ctx context.Context) (int, error) {
|
|
_spec := sqlgraph.NewDeleteSpec(permission.Table, sqlgraph.NewFieldSpec(permission.FieldID, field.TypeInt))
|
|
if ps := pd.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
affected, err := sqlgraph.DeleteNodes(ctx, pd.driver, _spec)
|
|
if err != nil && sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
pd.mutation.done = true
|
|
return affected, err
|
|
}
|
|
|
|
// PermissionDeleteOne is the builder for deleting a single Permission entity.
|
|
type PermissionDeleteOne struct {
|
|
pd *PermissionDelete
|
|
}
|
|
|
|
// Where appends a list predicates to the PermissionDelete builder.
|
|
func (pdo *PermissionDeleteOne) Where(ps ...predicate.Permission) *PermissionDeleteOne {
|
|
pdo.pd.mutation.Where(ps...)
|
|
return pdo
|
|
}
|
|
|
|
// Exec executes the deletion query.
|
|
func (pdo *PermissionDeleteOne) Exec(ctx context.Context) error {
|
|
n, err := pdo.pd.Exec(ctx)
|
|
switch {
|
|
case err != nil:
|
|
return err
|
|
case n == 0:
|
|
return &NotFoundError{permission.Label}
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (pdo *PermissionDeleteOne) ExecX(ctx context.Context) {
|
|
if err := pdo.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|