-
Notifications
You must be signed in to change notification settings - Fork 1
/
identitylink_delete.go
92 lines (79 loc) · 2.5 KB
/
identitylink_delete.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
// 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"
"github.com/woocoos/workflow/ent/predicate"
"github.com/woocoos/workflow/ent/identitylink"
"github.com/woocoos/workflow/ent/internal"
)
// IdentityLinkDelete is the builder for deleting a IdentityLink entity.
type IdentityLinkDelete struct {
config
hooks []Hook
mutation *IdentityLinkMutation
}
// Where appends a list predicates to the IdentityLinkDelete builder.
func (ild *IdentityLinkDelete) Where(ps ...predicate.IdentityLink) *IdentityLinkDelete {
ild.mutation.Where(ps...)
return ild
}
// Exec executes the deletion query and returns how many vertices were deleted.
func (ild *IdentityLinkDelete) Exec(ctx context.Context) (int, error) {
return withHooks(ctx, ild.sqlExec, ild.mutation, ild.hooks)
}
// ExecX is like Exec, but panics if an error occurs.
func (ild *IdentityLinkDelete) ExecX(ctx context.Context) int {
n, err := ild.Exec(ctx)
if err != nil {
panic(err)
}
return n
}
func (ild *IdentityLinkDelete) sqlExec(ctx context.Context) (int, error) {
_spec := sqlgraph.NewDeleteSpec(identitylink.Table, sqlgraph.NewFieldSpec(identitylink.FieldID, field.TypeInt))
_spec.Node.Schema = ild.schemaConfig.IdentityLink
ctx = internal.NewSchemaConfigContext(ctx, ild.schemaConfig)
if ps := ild.mutation.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
affected, err := sqlgraph.DeleteNodes(ctx, ild.driver, _spec)
if err != nil && sqlgraph.IsConstraintError(err) {
err = &ConstraintError{msg: err.Error(), wrap: err}
}
ild.mutation.done = true
return affected, err
}
// IdentityLinkDeleteOne is the builder for deleting a single IdentityLink entity.
type IdentityLinkDeleteOne struct {
ild *IdentityLinkDelete
}
// Where appends a list predicates to the IdentityLinkDelete builder.
func (ildo *IdentityLinkDeleteOne) Where(ps ...predicate.IdentityLink) *IdentityLinkDeleteOne {
ildo.ild.mutation.Where(ps...)
return ildo
}
// Exec executes the deletion query.
func (ildo *IdentityLinkDeleteOne) Exec(ctx context.Context) error {
n, err := ildo.ild.Exec(ctx)
switch {
case err != nil:
return err
case n == 0:
return &NotFoundError{identitylink.Label}
default:
return nil
}
}
// ExecX is like Exec, but panics if an error occurs.
func (ildo *IdentityLinkDeleteOne) ExecX(ctx context.Context) {
if err := ildo.Exec(ctx); err != nil {
panic(err)
}
}