1 Star 0 Fork 0

DaMeng/Ent

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
groupinfo_delete.go 2.53 KB
一键复制 编辑 原始数据 按行查看 历史
DaMeng 提交于 2024-10-24 16:04 +08:00 . :tada:fork ent
// 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"
"gitee.com/damengde/ent/dialect/gremlin"
"gitee.com/damengde/ent/dialect/gremlin/graph/dsl"
"gitee.com/damengde/ent/dialect/gremlin/graph/dsl/__"
"gitee.com/damengde/ent/dialect/gremlin/graph/dsl/g"
"gitee.com/damengde/ent/entc/integration/gremlin/ent/groupinfo"
"gitee.com/damengde/ent/entc/integration/gremlin/ent/predicate"
)
// GroupInfoDelete is the builder for deleting a GroupInfo entity.
type GroupInfoDelete struct {
config
hooks []Hook
mutation *GroupInfoMutation
}
// Where appends a list predicates to the GroupInfoDelete builder.
func (gid *GroupInfoDelete) Where(ps ...predicate.GroupInfo) *GroupInfoDelete {
gid.mutation.Where(ps...)
return gid
}
// Exec executes the deletion query and returns how many vertices were deleted.
func (gid *GroupInfoDelete) Exec(ctx context.Context) (int, error) {
return withHooks(ctx, gid.gremlinExec, gid.mutation, gid.hooks)
}
// ExecX is like Exec, but panics if an error occurs.
func (gid *GroupInfoDelete) ExecX(ctx context.Context) int {
n, err := gid.Exec(ctx)
if err != nil {
panic(err)
}
return n
}
func (gid *GroupInfoDelete) gremlinExec(ctx context.Context) (int, error) {
res := &gremlin.Response{}
query, bindings := gid.gremlin().Query()
if err := gid.driver.Exec(ctx, query, bindings, res); err != nil {
return 0, err
}
gid.mutation.done = true
return res.ReadInt()
}
func (gid *GroupInfoDelete) gremlin() *dsl.Traversal {
t := g.V().HasLabel(groupinfo.Label)
for _, p := range gid.mutation.predicates {
p(t)
}
return t.SideEffect(__.Drop()).Count()
}
// GroupInfoDeleteOne is the builder for deleting a single GroupInfo entity.
type GroupInfoDeleteOne struct {
gid *GroupInfoDelete
}
// Where appends a list predicates to the GroupInfoDelete builder.
func (gido *GroupInfoDeleteOne) Where(ps ...predicate.GroupInfo) *GroupInfoDeleteOne {
gido.gid.mutation.Where(ps...)
return gido
}
// Exec executes the deletion query.
func (gido *GroupInfoDeleteOne) Exec(ctx context.Context) error {
n, err := gido.gid.Exec(ctx)
switch {
case err != nil:
return err
case n == 0:
return &NotFoundError{groupinfo.Label}
default:
return nil
}
}
// ExecX is like Exec, but panics if an error occurs.
func (gido *GroupInfoDeleteOne) ExecX(ctx context.Context) {
if err := gido.Exec(ctx); err != nil {
panic(err)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/damengde/ent.git
git@gitee.com:damengde/ent.git
damengde
ent
Ent
90870c5ba095

搜索帮助