Files
ent/entc/integration/customid/ent/pet_update.go
2020-10-07 14:22:14 +03:00

812 lines
20 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 entc, DO NOT EDIT.
package ent
import (
"context"
"fmt"
"github.com/facebook/ent/dialect/sql"
"github.com/facebook/ent/dialect/sql/sqlgraph"
"github.com/facebook/ent/entc/integration/customid/ent/car"
"github.com/facebook/ent/entc/integration/customid/ent/pet"
"github.com/facebook/ent/entc/integration/customid/ent/predicate"
"github.com/facebook/ent/entc/integration/customid/ent/user"
"github.com/facebook/ent/schema/field"
)
// PetUpdate is the builder for updating Pet entities.
type PetUpdate struct {
config
hooks []Hook
mutation *PetMutation
}
// Where adds a new predicate for the builder.
func (pu *PetUpdate) Where(ps ...predicate.Pet) *PetUpdate {
pu.mutation.predicates = append(pu.mutation.predicates, ps...)
return pu
}
// SetOwnerID sets the owner edge to User by id.
func (pu *PetUpdate) SetOwnerID(id int) *PetUpdate {
pu.mutation.SetOwnerID(id)
return pu
}
// SetNillableOwnerID sets the owner edge to User by id if the given value is not nil.
func (pu *PetUpdate) SetNillableOwnerID(id *int) *PetUpdate {
if id != nil {
pu = pu.SetOwnerID(*id)
}
return pu
}
// SetOwner sets the owner edge to User.
func (pu *PetUpdate) SetOwner(u *User) *PetUpdate {
return pu.SetOwnerID(u.ID)
}
// AddCarIDs adds the cars edge to Car by ids.
func (pu *PetUpdate) AddCarIDs(ids ...int) *PetUpdate {
pu.mutation.AddCarIDs(ids...)
return pu
}
// AddCars adds the cars edges to Car.
func (pu *PetUpdate) AddCars(c ...*Car) *PetUpdate {
ids := make([]int, len(c))
for i := range c {
ids[i] = c[i].ID
}
return pu.AddCarIDs(ids...)
}
// AddFriendIDs adds the friends edge to Pet by ids.
func (pu *PetUpdate) AddFriendIDs(ids ...string) *PetUpdate {
pu.mutation.AddFriendIDs(ids...)
return pu
}
// AddFriends adds the friends edges to Pet.
func (pu *PetUpdate) AddFriends(p ...*Pet) *PetUpdate {
ids := make([]string, len(p))
for i := range p {
ids[i] = p[i].ID
}
return pu.AddFriendIDs(ids...)
}
// SetBestFriendID sets the best_friend edge to Pet by id.
func (pu *PetUpdate) SetBestFriendID(id string) *PetUpdate {
pu.mutation.SetBestFriendID(id)
return pu
}
// SetNillableBestFriendID sets the best_friend edge to Pet by id if the given value is not nil.
func (pu *PetUpdate) SetNillableBestFriendID(id *string) *PetUpdate {
if id != nil {
pu = pu.SetBestFriendID(*id)
}
return pu
}
// SetBestFriend sets the best_friend edge to Pet.
func (pu *PetUpdate) SetBestFriend(p *Pet) *PetUpdate {
return pu.SetBestFriendID(p.ID)
}
// Mutation returns the PetMutation object of the builder.
func (pu *PetUpdate) Mutation() *PetMutation {
return pu.mutation
}
// ClearOwner clears the "owner" edge to type User.
func (pu *PetUpdate) ClearOwner() *PetUpdate {
pu.mutation.ClearOwner()
return pu
}
// ClearCars clears all "cars" edges to type Car.
func (pu *PetUpdate) ClearCars() *PetUpdate {
pu.mutation.ClearCars()
return pu
}
// RemoveCarIDs removes the cars edge to Car by ids.
func (pu *PetUpdate) RemoveCarIDs(ids ...int) *PetUpdate {
pu.mutation.RemoveCarIDs(ids...)
return pu
}
// RemoveCars removes cars edges to Car.
func (pu *PetUpdate) RemoveCars(c ...*Car) *PetUpdate {
ids := make([]int, len(c))
for i := range c {
ids[i] = c[i].ID
}
return pu.RemoveCarIDs(ids...)
}
// ClearFriends clears all "friends" edges to type Pet.
func (pu *PetUpdate) ClearFriends() *PetUpdate {
pu.mutation.ClearFriends()
return pu
}
// RemoveFriendIDs removes the friends edge to Pet by ids.
func (pu *PetUpdate) RemoveFriendIDs(ids ...string) *PetUpdate {
pu.mutation.RemoveFriendIDs(ids...)
return pu
}
// RemoveFriends removes friends edges to Pet.
func (pu *PetUpdate) RemoveFriends(p ...*Pet) *PetUpdate {
ids := make([]string, len(p))
for i := range p {
ids[i] = p[i].ID
}
return pu.RemoveFriendIDs(ids...)
}
// ClearBestFriend clears the "best_friend" edge to type Pet.
func (pu *PetUpdate) ClearBestFriend() *PetUpdate {
pu.mutation.ClearBestFriend()
return pu
}
// Save executes the query and returns the number of rows/vertices matched by this operation.
func (pu *PetUpdate) Save(ctx context.Context) (int, error) {
var (
err error
affected int
)
if len(pu.hooks) == 0 {
affected, err = pu.sqlSave(ctx)
} else {
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
mutation, ok := m.(*PetMutation)
if !ok {
return nil, fmt.Errorf("unexpected mutation type %T", m)
}
pu.mutation = mutation
affected, err = pu.sqlSave(ctx)
mutation.done = true
return affected, err
})
for i := len(pu.hooks) - 1; i >= 0; i-- {
mut = pu.hooks[i](mut)
}
if _, err := mut.Mutate(ctx, pu.mutation); err != nil {
return 0, err
}
}
return affected, err
}
// SaveX is like Save, but panics if an error occurs.
func (pu *PetUpdate) SaveX(ctx context.Context) int {
affected, err := pu.Save(ctx)
if err != nil {
panic(err)
}
return affected
}
// Exec executes the query.
func (pu *PetUpdate) Exec(ctx context.Context) error {
_, err := pu.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (pu *PetUpdate) ExecX(ctx context.Context) {
if err := pu.Exec(ctx); err != nil {
panic(err)
}
}
func (pu *PetUpdate) sqlSave(ctx context.Context) (n int, err error) {
_spec := &sqlgraph.UpdateSpec{
Node: &sqlgraph.NodeSpec{
Table: pet.Table,
Columns: pet.Columns,
ID: &sqlgraph.FieldSpec{
Type: field.TypeString,
Column: pet.FieldID,
},
},
}
if ps := pu.mutation.predicates; len(ps) > 0 {
_spec.Predicate = func(selector *sql.Selector) {
for i := range ps {
ps[i](selector)
}
}
}
if pu.mutation.OwnerCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: true,
Table: pet.OwnerTable,
Columns: []string{pet.OwnerColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: user.FieldID,
},
},
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := pu.mutation.OwnerIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: true,
Table: pet.OwnerTable,
Columns: []string{pet.OwnerColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: user.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Add = append(_spec.Edges.Add, edge)
}
if pu.mutation.CarsCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2M,
Inverse: false,
Table: pet.CarsTable,
Columns: []string{pet.CarsColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: car.FieldID,
},
},
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := pu.mutation.RemovedCarsIDs(); len(nodes) > 0 && !pu.mutation.CarsCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2M,
Inverse: false,
Table: pet.CarsTable,
Columns: []string{pet.CarsColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: car.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := pu.mutation.CarsIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2M,
Inverse: false,
Table: pet.CarsTable,
Columns: []string{pet.CarsColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: car.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Add = append(_spec.Edges.Add, edge)
}
if pu.mutation.FriendsCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2M,
Inverse: false,
Table: pet.FriendsTable,
Columns: pet.FriendsPrimaryKey,
Bidi: true,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeString,
Column: pet.FieldID,
},
},
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := pu.mutation.RemovedFriendsIDs(); len(nodes) > 0 && !pu.mutation.FriendsCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2M,
Inverse: false,
Table: pet.FriendsTable,
Columns: pet.FriendsPrimaryKey,
Bidi: true,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeString,
Column: pet.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := pu.mutation.FriendsIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2M,
Inverse: false,
Table: pet.FriendsTable,
Columns: pet.FriendsPrimaryKey,
Bidi: true,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeString,
Column: pet.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Add = append(_spec.Edges.Add, edge)
}
if pu.mutation.BestFriendCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2O,
Inverse: false,
Table: pet.BestFriendTable,
Columns: []string{pet.BestFriendColumn},
Bidi: true,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeString,
Column: pet.FieldID,
},
},
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := pu.mutation.BestFriendIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2O,
Inverse: false,
Table: pet.BestFriendTable,
Columns: []string{pet.BestFriendColumn},
Bidi: true,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeString,
Column: pet.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Add = append(_spec.Edges.Add, edge)
}
if n, err = sqlgraph.UpdateNodes(ctx, pu.driver, _spec); err != nil {
if _, ok := err.(*sqlgraph.NotFoundError); ok {
err = &NotFoundError{pet.Label}
} else if cerr, ok := isSQLConstraintError(err); ok {
err = cerr
}
return 0, err
}
return n, nil
}
// PetUpdateOne is the builder for updating a single Pet entity.
type PetUpdateOne struct {
config
hooks []Hook
mutation *PetMutation
}
// SetOwnerID sets the owner edge to User by id.
func (puo *PetUpdateOne) SetOwnerID(id int) *PetUpdateOne {
puo.mutation.SetOwnerID(id)
return puo
}
// SetNillableOwnerID sets the owner edge to User by id if the given value is not nil.
func (puo *PetUpdateOne) SetNillableOwnerID(id *int) *PetUpdateOne {
if id != nil {
puo = puo.SetOwnerID(*id)
}
return puo
}
// SetOwner sets the owner edge to User.
func (puo *PetUpdateOne) SetOwner(u *User) *PetUpdateOne {
return puo.SetOwnerID(u.ID)
}
// AddCarIDs adds the cars edge to Car by ids.
func (puo *PetUpdateOne) AddCarIDs(ids ...int) *PetUpdateOne {
puo.mutation.AddCarIDs(ids...)
return puo
}
// AddCars adds the cars edges to Car.
func (puo *PetUpdateOne) AddCars(c ...*Car) *PetUpdateOne {
ids := make([]int, len(c))
for i := range c {
ids[i] = c[i].ID
}
return puo.AddCarIDs(ids...)
}
// AddFriendIDs adds the friends edge to Pet by ids.
func (puo *PetUpdateOne) AddFriendIDs(ids ...string) *PetUpdateOne {
puo.mutation.AddFriendIDs(ids...)
return puo
}
// AddFriends adds the friends edges to Pet.
func (puo *PetUpdateOne) AddFriends(p ...*Pet) *PetUpdateOne {
ids := make([]string, len(p))
for i := range p {
ids[i] = p[i].ID
}
return puo.AddFriendIDs(ids...)
}
// SetBestFriendID sets the best_friend edge to Pet by id.
func (puo *PetUpdateOne) SetBestFriendID(id string) *PetUpdateOne {
puo.mutation.SetBestFriendID(id)
return puo
}
// SetNillableBestFriendID sets the best_friend edge to Pet by id if the given value is not nil.
func (puo *PetUpdateOne) SetNillableBestFriendID(id *string) *PetUpdateOne {
if id != nil {
puo = puo.SetBestFriendID(*id)
}
return puo
}
// SetBestFriend sets the best_friend edge to Pet.
func (puo *PetUpdateOne) SetBestFriend(p *Pet) *PetUpdateOne {
return puo.SetBestFriendID(p.ID)
}
// Mutation returns the PetMutation object of the builder.
func (puo *PetUpdateOne) Mutation() *PetMutation {
return puo.mutation
}
// ClearOwner clears the "owner" edge to type User.
func (puo *PetUpdateOne) ClearOwner() *PetUpdateOne {
puo.mutation.ClearOwner()
return puo
}
// ClearCars clears all "cars" edges to type Car.
func (puo *PetUpdateOne) ClearCars() *PetUpdateOne {
puo.mutation.ClearCars()
return puo
}
// RemoveCarIDs removes the cars edge to Car by ids.
func (puo *PetUpdateOne) RemoveCarIDs(ids ...int) *PetUpdateOne {
puo.mutation.RemoveCarIDs(ids...)
return puo
}
// RemoveCars removes cars edges to Car.
func (puo *PetUpdateOne) RemoveCars(c ...*Car) *PetUpdateOne {
ids := make([]int, len(c))
for i := range c {
ids[i] = c[i].ID
}
return puo.RemoveCarIDs(ids...)
}
// ClearFriends clears all "friends" edges to type Pet.
func (puo *PetUpdateOne) ClearFriends() *PetUpdateOne {
puo.mutation.ClearFriends()
return puo
}
// RemoveFriendIDs removes the friends edge to Pet by ids.
func (puo *PetUpdateOne) RemoveFriendIDs(ids ...string) *PetUpdateOne {
puo.mutation.RemoveFriendIDs(ids...)
return puo
}
// RemoveFriends removes friends edges to Pet.
func (puo *PetUpdateOne) RemoveFriends(p ...*Pet) *PetUpdateOne {
ids := make([]string, len(p))
for i := range p {
ids[i] = p[i].ID
}
return puo.RemoveFriendIDs(ids...)
}
// ClearBestFriend clears the "best_friend" edge to type Pet.
func (puo *PetUpdateOne) ClearBestFriend() *PetUpdateOne {
puo.mutation.ClearBestFriend()
return puo
}
// Save executes the query and returns the updated entity.
func (puo *PetUpdateOne) Save(ctx context.Context) (*Pet, error) {
var (
err error
node *Pet
)
if len(puo.hooks) == 0 {
node, err = puo.sqlSave(ctx)
} else {
var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
mutation, ok := m.(*PetMutation)
if !ok {
return nil, fmt.Errorf("unexpected mutation type %T", m)
}
puo.mutation = mutation
node, err = puo.sqlSave(ctx)
mutation.done = true
return node, err
})
for i := len(puo.hooks) - 1; i >= 0; i-- {
mut = puo.hooks[i](mut)
}
if _, err := mut.Mutate(ctx, puo.mutation); err != nil {
return nil, err
}
}
return node, err
}
// SaveX is like Save, but panics if an error occurs.
func (puo *PetUpdateOne) SaveX(ctx context.Context) *Pet {
node, err := puo.Save(ctx)
if err != nil {
panic(err)
}
return node
}
// Exec executes the query on the entity.
func (puo *PetUpdateOne) Exec(ctx context.Context) error {
_, err := puo.Save(ctx)
return err
}
// ExecX is like Exec, but panics if an error occurs.
func (puo *PetUpdateOne) ExecX(ctx context.Context) {
if err := puo.Exec(ctx); err != nil {
panic(err)
}
}
func (puo *PetUpdateOne) sqlSave(ctx context.Context) (_node *Pet, err error) {
_spec := &sqlgraph.UpdateSpec{
Node: &sqlgraph.NodeSpec{
Table: pet.Table,
Columns: pet.Columns,
ID: &sqlgraph.FieldSpec{
Type: field.TypeString,
Column: pet.FieldID,
},
},
}
id, ok := puo.mutation.ID()
if !ok {
return nil, &ValidationError{Name: "ID", err: fmt.Errorf("missing Pet.ID for update")}
}
_spec.Node.ID.Value = id
if puo.mutation.OwnerCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: true,
Table: pet.OwnerTable,
Columns: []string{pet.OwnerColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: user.FieldID,
},
},
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := puo.mutation.OwnerIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2O,
Inverse: true,
Table: pet.OwnerTable,
Columns: []string{pet.OwnerColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: user.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Add = append(_spec.Edges.Add, edge)
}
if puo.mutation.CarsCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2M,
Inverse: false,
Table: pet.CarsTable,
Columns: []string{pet.CarsColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: car.FieldID,
},
},
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := puo.mutation.RemovedCarsIDs(); len(nodes) > 0 && !puo.mutation.CarsCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2M,
Inverse: false,
Table: pet.CarsTable,
Columns: []string{pet.CarsColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: car.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := puo.mutation.CarsIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2M,
Inverse: false,
Table: pet.CarsTable,
Columns: []string{pet.CarsColumn},
Bidi: false,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeInt,
Column: car.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Add = append(_spec.Edges.Add, edge)
}
if puo.mutation.FriendsCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2M,
Inverse: false,
Table: pet.FriendsTable,
Columns: pet.FriendsPrimaryKey,
Bidi: true,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeString,
Column: pet.FieldID,
},
},
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := puo.mutation.RemovedFriendsIDs(); len(nodes) > 0 && !puo.mutation.FriendsCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2M,
Inverse: false,
Table: pet.FriendsTable,
Columns: pet.FriendsPrimaryKey,
Bidi: true,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeString,
Column: pet.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := puo.mutation.FriendsIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.M2M,
Inverse: false,
Table: pet.FriendsTable,
Columns: pet.FriendsPrimaryKey,
Bidi: true,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeString,
Column: pet.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Add = append(_spec.Edges.Add, edge)
}
if puo.mutation.BestFriendCleared() {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2O,
Inverse: false,
Table: pet.BestFriendTable,
Columns: []string{pet.BestFriendColumn},
Bidi: true,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeString,
Column: pet.FieldID,
},
},
}
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
}
if nodes := puo.mutation.BestFriendIDs(); len(nodes) > 0 {
edge := &sqlgraph.EdgeSpec{
Rel: sqlgraph.O2O,
Inverse: false,
Table: pet.BestFriendTable,
Columns: []string{pet.BestFriendColumn},
Bidi: true,
Target: &sqlgraph.EdgeTarget{
IDSpec: &sqlgraph.FieldSpec{
Type: field.TypeString,
Column: pet.FieldID,
},
},
}
for _, k := range nodes {
edge.Target.Nodes = append(edge.Target.Nodes, k)
}
_spec.Edges.Add = append(_spec.Edges.Add, edge)
}
_node = &Pet{config: puo.config}
_spec.Assign = _node.assignValues
_spec.ScanValues = _node.scanValues()
if err = sqlgraph.UpdateNode(ctx, puo.driver, _spec); err != nil {
if _, ok := err.(*sqlgraph.NotFoundError); ok {
err = &NotFoundError{pet.Label}
} else if cerr, ok := isSQLConstraintError(err); ok {
err = cerr
}
return nil, err
}
return _node, nil
}