ent seteup
This commit is contained in:
88
db/ent/todo_delete.go
Normal file
88
db/ent/todo_delete.go
Normal file
@@ -0,0 +1,88 @@
|
||||
// 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"
|
||||
"gitserver.in/patialtech/rano/db/ent/predicate"
|
||||
"gitserver.in/patialtech/rano/db/ent/todo"
|
||||
)
|
||||
|
||||
// TodoDelete is the builder for deleting a Todo entity.
|
||||
type TodoDelete struct {
|
||||
config
|
||||
hooks []Hook
|
||||
mutation *TodoMutation
|
||||
}
|
||||
|
||||
// Where appends a list predicates to the TodoDelete builder.
|
||||
func (td *TodoDelete) Where(ps ...predicate.Todo) *TodoDelete {
|
||||
td.mutation.Where(ps...)
|
||||
return td
|
||||
}
|
||||
|
||||
// Exec executes the deletion query and returns how many vertices were deleted.
|
||||
func (td *TodoDelete) Exec(ctx context.Context) (int, error) {
|
||||
return withHooks(ctx, td.sqlExec, td.mutation, td.hooks)
|
||||
}
|
||||
|
||||
// ExecX is like Exec, but panics if an error occurs.
|
||||
func (td *TodoDelete) ExecX(ctx context.Context) int {
|
||||
n, err := td.Exec(ctx)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
return n
|
||||
}
|
||||
|
||||
func (td *TodoDelete) sqlExec(ctx context.Context) (int, error) {
|
||||
_spec := sqlgraph.NewDeleteSpec(todo.Table, sqlgraph.NewFieldSpec(todo.FieldID, field.TypeInt))
|
||||
if ps := td.mutation.predicates; len(ps) > 0 {
|
||||
_spec.Predicate = func(selector *sql.Selector) {
|
||||
for i := range ps {
|
||||
ps[i](selector)
|
||||
}
|
||||
}
|
||||
}
|
||||
affected, err := sqlgraph.DeleteNodes(ctx, td.driver, _spec)
|
||||
if err != nil && sqlgraph.IsConstraintError(err) {
|
||||
err = &ConstraintError{msg: err.Error(), wrap: err}
|
||||
}
|
||||
td.mutation.done = true
|
||||
return affected, err
|
||||
}
|
||||
|
||||
// TodoDeleteOne is the builder for deleting a single Todo entity.
|
||||
type TodoDeleteOne struct {
|
||||
td *TodoDelete
|
||||
}
|
||||
|
||||
// Where appends a list predicates to the TodoDelete builder.
|
||||
func (tdo *TodoDeleteOne) Where(ps ...predicate.Todo) *TodoDeleteOne {
|
||||
tdo.td.mutation.Where(ps...)
|
||||
return tdo
|
||||
}
|
||||
|
||||
// Exec executes the deletion query.
|
||||
func (tdo *TodoDeleteOne) Exec(ctx context.Context) error {
|
||||
n, err := tdo.td.Exec(ctx)
|
||||
switch {
|
||||
case err != nil:
|
||||
return err
|
||||
case n == 0:
|
||||
return &NotFoundError{todo.Label}
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
|
||||
// ExecX is like Exec, but panics if an error occurs.
|
||||
func (tdo *TodoDeleteOne) ExecX(ctx context.Context) {
|
||||
if err := tdo.Exec(ctx); err != nil {
|
||||
panic(err)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user