mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
93 lines
2.4 KiB
Go
93 lines
2.4 KiB
Go
// Copyright 2019-present Facebook Inc. All rights reserved.
|
|
// This source code is licensed under the Apache 2.0 license found
|
|
// in the LICENSE file in the root directory of this source tree.
|
|
|
|
// 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/entc/integration/edgeschema/ent/predicate"
|
|
"entgo.io/ent/entc/integration/edgeschema/ent/tweet"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
// TweetDelete is the builder for deleting a Tweet entity.
|
|
type TweetDelete struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *TweetMutation
|
|
}
|
|
|
|
// Where appends a list predicates to the TweetDelete builder.
|
|
func (td *TweetDelete) Where(ps ...predicate.Tweet) *TweetDelete {
|
|
td.mutation.Where(ps...)
|
|
return td
|
|
}
|
|
|
|
// Exec executes the deletion query and returns how many vertices were deleted.
|
|
func (td *TweetDelete) Exec(ctx context.Context) (int, error) {
|
|
return withHooks[int, TweetMutation](ctx, td.sqlExec, td.mutation, td.hooks)
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (td *TweetDelete) ExecX(ctx context.Context) int {
|
|
n, err := td.Exec(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return n
|
|
}
|
|
|
|
func (td *TweetDelete) sqlExec(ctx context.Context) (int, error) {
|
|
_spec := sqlgraph.NewDeleteSpec(tweet.Table, sqlgraph.NewFieldSpec(tweet.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
|
|
}
|
|
|
|
// TweetDeleteOne is the builder for deleting a single Tweet entity.
|
|
type TweetDeleteOne struct {
|
|
td *TweetDelete
|
|
}
|
|
|
|
// Where appends a list predicates to the TweetDelete builder.
|
|
func (tdo *TweetDeleteOne) Where(ps ...predicate.Tweet) *TweetDeleteOne {
|
|
tdo.td.mutation.Where(ps...)
|
|
return tdo
|
|
}
|
|
|
|
// Exec executes the deletion query.
|
|
func (tdo *TweetDeleteOne) Exec(ctx context.Context) error {
|
|
n, err := tdo.td.Exec(ctx)
|
|
switch {
|
|
case err != nil:
|
|
return err
|
|
case n == 0:
|
|
return &NotFoundError{tweet.Label}
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (tdo *TweetDeleteOne) ExecX(ctx context.Context) {
|
|
if err := tdo.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|