Ai
1 Star 0 Fork 0

DaMeng/Ent

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
spec_update.go 7.05 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"
"errors"
"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/predicate"
"gitee.com/damengde/ent/entc/integration/gremlin/ent/spec"
)
// SpecUpdate is the builder for updating Spec entities.
type SpecUpdate struct {
config
hooks []Hook
mutation *SpecMutation
}
// Where appends a list predicates to the SpecUpdate builder.
func (su *SpecUpdate) Where(ps ...predicate.Spec) *SpecUpdate {
su.mutation.Where(ps...)
return su
}
// AddCardIDs adds the "card" edge to the Card entity by IDs.
func (su *SpecUpdate) AddCardIDs(ids ...string) *SpecUpdate {
su.mutation.AddCardIDs(ids...)
return su
}
// AddCard adds the "card" edges to the Card entity.
func (su *SpecUpdate) AddCard(c ...*Card) *SpecUpdate {
ids := make([]string, len(c))
for i := range c {
ids[i] = c[i].ID
}
return su.AddCardIDs(ids...)
}
// Mutation returns the SpecMutation object of the builder.
func (su *SpecUpdate) Mutation() *SpecMutation {
return su.mutation
}
// ClearCard clears all "card" edges to the Card entity.
func (su *SpecUpdate) ClearCard() *SpecUpdate {
su.mutation.ClearCard()
return su
}
// RemoveCardIDs removes the "card" edge to Card entities by IDs.
func (su *SpecUpdate) RemoveCardIDs(ids ...string) *SpecUpdate {
su.mutation.RemoveCardIDs(ids...)
return su
}
// RemoveCard removes "card" edges to Card entities.
func (su *SpecUpdate) RemoveCard(c ...*Card) *SpecUpdate {
ids := make([]string, len(c))
for i := range c {
ids[i] = c[i].ID
}
return su.RemoveCardIDs(ids...)
}
// Save executes the query and returns the number of nodes affected by the update operation.
func (su *SpecUpdate) Save(ctx context.Context) (int, error) {
return withHooks(ctx, su.gremlinSave, su.mutation, su.hooks)
}
// SaveX is like Save, but panics if an error occurs.
func (su *SpecUpdate) SaveX(ctx context.Context) int {
affected, err := su.Save(ctx)
if err != nil {
panic(err)
}
return affected
}
// Exec executes the query.
func (su *SpecUpdate) Exec(ctx context.Context) error {
_, err := su.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (su *SpecUpdate) ExecX(ctx context.Context) {
if err := su.Exec(ctx); err != nil {
panic(err)
}
}
func (su *SpecUpdate) gremlinSave(ctx context.Context) (int, error) {
res := &gremlin.Response{}
query, bindings := su.gremlin().Query()
if err := su.driver.Exec(ctx, query, bindings, res); err != nil {
return 0, err
}
if err, ok := isConstantError(res); ok {
return 0, err
}
su.mutation.done = true
return res.ReadInt()
}
func (su *SpecUpdate) gremlin() *dsl.Traversal {
v := g.V().HasLabel(spec.Label)
for _, p := range su.mutation.predicates {
p(v)
}
var (
rv = v.Clone()
_ = rv
trs []*dsl.Traversal
)
for _, id := range su.mutation.RemovedCardIDs() {
tr := rv.Clone().OutE(spec.CardLabel).Where(__.OtherV().HasID(id)).Drop().Iterate()
trs = append(trs, tr)
}
for _, id := range su.mutation.CardIDs() {
v.AddE(spec.CardLabel).To(g.V(id)).OutV()
}
v.Count()
trs = append(trs, v)
return dsl.Join(trs...)
}
// SpecUpdateOne is the builder for updating a single Spec entity.
type SpecUpdateOne struct {
config
fields []string
hooks []Hook
mutation *SpecMutation
}
// AddCardIDs adds the "card" edge to the Card entity by IDs.
func (suo *SpecUpdateOne) AddCardIDs(ids ...string) *SpecUpdateOne {
suo.mutation.AddCardIDs(ids...)
return suo
}
// AddCard adds the "card" edges to the Card entity.
func (suo *SpecUpdateOne) AddCard(c ...*Card) *SpecUpdateOne {
ids := make([]string, len(c))
for i := range c {
ids[i] = c[i].ID
}
return suo.AddCardIDs(ids...)
}
// Mutation returns the SpecMutation object of the builder.
func (suo *SpecUpdateOne) Mutation() *SpecMutation {
return suo.mutation
}
// ClearCard clears all "card" edges to the Card entity.
func (suo *SpecUpdateOne) ClearCard() *SpecUpdateOne {
suo.mutation.ClearCard()
return suo
}
// RemoveCardIDs removes the "card" edge to Card entities by IDs.
func (suo *SpecUpdateOne) RemoveCardIDs(ids ...string) *SpecUpdateOne {
suo.mutation.RemoveCardIDs(ids...)
return suo
}
// RemoveCard removes "card" edges to Card entities.
func (suo *SpecUpdateOne) RemoveCard(c ...*Card) *SpecUpdateOne {
ids := make([]string, len(c))
for i := range c {
ids[i] = c[i].ID
}
return suo.RemoveCardIDs(ids...)
}
// Where appends a list predicates to the SpecUpdate builder.
func (suo *SpecUpdateOne) Where(ps ...predicate.Spec) *SpecUpdateOne {
suo.mutation.Where(ps...)
return suo
}
// Select allows selecting one or more fields (columns) of the returned entity.
// The default is selecting all fields defined in the entity schema.
func (suo *SpecUpdateOne) Select(field string, fields ...string) *SpecUpdateOne {
suo.fields = append([]string{field}, fields...)
return suo
}
// Save executes the query and returns the updated Spec entity.
func (suo *SpecUpdateOne) Save(ctx context.Context) (*Spec, error) {
return withHooks(ctx, suo.gremlinSave, suo.mutation, suo.hooks)
}
// SaveX is like Save, but panics if an error occurs.
func (suo *SpecUpdateOne) SaveX(ctx context.Context) *Spec {
node, err := suo.Save(ctx)
if err != nil {
panic(err)
}
return node
}
// Exec executes the query on the entity.
func (suo *SpecUpdateOne) Exec(ctx context.Context) error {
_, err := suo.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (suo *SpecUpdateOne) ExecX(ctx context.Context) {
if err := suo.Exec(ctx); err != nil {
panic(err)
}
}
func (suo *SpecUpdateOne) gremlinSave(ctx context.Context) (*Spec, error) {
res := &gremlin.Response{}
id, ok := suo.mutation.ID()
if !ok {
return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Spec.id" for update`)}
}
query, bindings := suo.gremlin(id).Query()
if err := suo.driver.Exec(ctx, query, bindings, res); err != nil {
return nil, err
}
if err, ok := isConstantError(res); ok {
return nil, err
}
suo.mutation.done = true
s := &Spec{config: suo.config}
if err := s.FromResponse(res); err != nil {
return nil, err
}
return s, nil
}
func (suo *SpecUpdateOne) gremlin(id string) *dsl.Traversal {
v := g.V(id)
var (
rv = v.Clone()
_ = rv
trs []*dsl.Traversal
)
for _, id := range suo.mutation.RemovedCardIDs() {
tr := rv.Clone().OutE(spec.CardLabel).Where(__.OtherV().HasID(id)).Drop().Iterate()
trs = append(trs, tr)
}
for _, id := range suo.mutation.CardIDs() {
v.AddE(spec.CardLabel).To(g.V(id)).OutV()
}
if len(suo.fields) > 0 {
fields := make([]any, 0, len(suo.fields)+1)
fields = append(fields, true)
for _, f := range suo.fields {
fields = append(fields, f)
}
v.ValueMap(fields...)
} else {
v.ValueMap(true)
}
trs = append(trs, v)
return dsl.Join(trs...)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/damengde/ent.git
git@gitee.com:damengde/ent.git
damengde
ent
Ent
90870c5ba095

搜索帮助