// Code generated by ent, DO NOT EDIT. package db import ( "context" "entgo.io/ent/dialect/sql" "entgo.io/ent/dialect/sql/sqlgraph" "entgo.io/ent/schema/field" "github.com/dexidp/dex/storage/ent/db/authrequest" "github.com/dexidp/dex/storage/ent/db/predicate" ) // AuthRequestDelete is the builder for deleting a AuthRequest entity. type AuthRequestDelete struct { config hooks []Hook mutation *AuthRequestMutation } // Where appends a list predicates to the AuthRequestDelete builder. func (ard *AuthRequestDelete) Where(ps ...predicate.AuthRequest) *AuthRequestDelete { ard.mutation.Where(ps...) return ard } // Exec executes the deletion query and returns how many vertices were deleted. func (ard *AuthRequestDelete) Exec(ctx context.Context) (int, error) { return withHooks(ctx, ard.sqlExec, ard.mutation, ard.hooks) } // ExecX is like Exec, but panics if an error occurs. func (ard *AuthRequestDelete) ExecX(ctx context.Context) int { n, err := ard.Exec(ctx) if err != nil { panic(err) } return n } func (ard *AuthRequestDelete) sqlExec(ctx context.Context) (int, error) { _spec := sqlgraph.NewDeleteSpec(authrequest.Table, sqlgraph.NewFieldSpec(authrequest.FieldID, field.TypeString)) if ps := ard.mutation.predicates; len(ps) > 0 { _spec.Predicate = func(selector *sql.Selector) { for i := range ps { ps[i](selector) } } } affected, err := sqlgraph.DeleteNodes(ctx, ard.driver, _spec) if err != nil && sqlgraph.IsConstraintError(err) { err = &ConstraintError{msg: err.Error(), wrap: err} } ard.mutation.done = true return affected, err } // AuthRequestDeleteOne is the builder for deleting a single AuthRequest entity. type AuthRequestDeleteOne struct { ard *AuthRequestDelete } // Where appends a list predicates to the AuthRequestDelete builder. func (ardo *AuthRequestDeleteOne) Where(ps ...predicate.AuthRequest) *AuthRequestDeleteOne { ardo.ard.mutation.Where(ps...) return ardo } // Exec executes the deletion query. func (ardo *AuthRequestDeleteOne) Exec(ctx context.Context) error { n, err := ardo.ard.Exec(ctx) switch { case err != nil: return err case n == 0: return &NotFoundError{authrequest.Label} default: return nil } } // ExecX is like Exec, but panics if an error occurs. func (ardo *AuthRequestDeleteOne) ExecX(ctx context.Context) { if err := ardo.Exec(ctx); err != nil { panic(err) } }