2024-02-14 13:08:27 +01:00
|
|
|
// Code generated by ent, DO NOT EDIT.
|
|
|
|
|
|
|
|
|
|
package ent
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"errors"
|
|
|
|
|
"fmt"
|
2024-03-13 13:28:06 +01:00
|
|
|
"portfolio/backend/database/ent/predicate"
|
|
|
|
|
"portfolio/backend/database/ent/project"
|
|
|
|
|
"portfolio/backend/database/ent/team"
|
|
|
|
|
"portfolio/backend/database/ent/user"
|
2024-02-14 13:08:27 +01:00
|
|
|
|
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
|
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
|
|
|
"entgo.io/ent/schema/field"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// TeamUpdate is the builder for updating Team entities.
|
|
|
|
|
type TeamUpdate struct {
|
|
|
|
|
config
|
|
|
|
|
hooks []Hook
|
|
|
|
|
mutation *TeamMutation
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Where appends a list predicates to the TeamUpdate builder.
|
|
|
|
|
func (tu *TeamUpdate) Where(ps ...predicate.Team) *TeamUpdate {
|
|
|
|
|
tu.mutation.Where(ps...)
|
|
|
|
|
return tu
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetName sets the "name" field.
|
|
|
|
|
func (tu *TeamUpdate) SetName(s string) *TeamUpdate {
|
|
|
|
|
tu.mutation.SetName(s)
|
|
|
|
|
return tu
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetNillableName sets the "name" field if the given value is not nil.
|
|
|
|
|
func (tu *TeamUpdate) SetNillableName(s *string) *TeamUpdate {
|
|
|
|
|
if s != nil {
|
|
|
|
|
tu.SetName(*s)
|
|
|
|
|
}
|
|
|
|
|
return tu
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 14:55:41 +01:00
|
|
|
// AddProjectIDs adds the "project" edge to the Project entity by IDs.
|
2024-02-14 13:08:27 +01:00
|
|
|
func (tu *TeamUpdate) AddProjectIDs(ids ...int) *TeamUpdate {
|
|
|
|
|
tu.mutation.AddProjectIDs(ids...)
|
|
|
|
|
return tu
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 14:55:41 +01:00
|
|
|
// AddProject adds the "project" edges to the Project entity.
|
|
|
|
|
func (tu *TeamUpdate) AddProject(p ...*Project) *TeamUpdate {
|
2024-02-14 13:08:27 +01:00
|
|
|
ids := make([]int, len(p))
|
|
|
|
|
for i := range p {
|
|
|
|
|
ids[i] = p[i].ID
|
|
|
|
|
}
|
|
|
|
|
return tu.AddProjectIDs(ids...)
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 14:55:41 +01:00
|
|
|
// AddUserIDs adds the "users" edge to the User entity by IDs.
|
|
|
|
|
func (tu *TeamUpdate) AddUserIDs(ids ...int) *TeamUpdate {
|
|
|
|
|
tu.mutation.AddUserIDs(ids...)
|
|
|
|
|
return tu
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// AddUsers adds the "users" edges to the User entity.
|
|
|
|
|
func (tu *TeamUpdate) AddUsers(u ...*User) *TeamUpdate {
|
|
|
|
|
ids := make([]int, len(u))
|
|
|
|
|
for i := range u {
|
|
|
|
|
ids[i] = u[i].ID
|
|
|
|
|
}
|
|
|
|
|
return tu.AddUserIDs(ids...)
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 13:08:27 +01:00
|
|
|
// Mutation returns the TeamMutation object of the builder.
|
|
|
|
|
func (tu *TeamUpdate) Mutation() *TeamMutation {
|
|
|
|
|
return tu.mutation
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 14:55:41 +01:00
|
|
|
// ClearProject clears all "project" edges to the Project entity.
|
|
|
|
|
func (tu *TeamUpdate) ClearProject() *TeamUpdate {
|
|
|
|
|
tu.mutation.ClearProject()
|
2024-02-14 13:08:27 +01:00
|
|
|
return tu
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 14:55:41 +01:00
|
|
|
// RemoveProjectIDs removes the "project" edge to Project entities by IDs.
|
2024-02-14 13:08:27 +01:00
|
|
|
func (tu *TeamUpdate) RemoveProjectIDs(ids ...int) *TeamUpdate {
|
|
|
|
|
tu.mutation.RemoveProjectIDs(ids...)
|
|
|
|
|
return tu
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 14:55:41 +01:00
|
|
|
// RemoveProject removes "project" edges to Project entities.
|
|
|
|
|
func (tu *TeamUpdate) RemoveProject(p ...*Project) *TeamUpdate {
|
2024-02-14 13:08:27 +01:00
|
|
|
ids := make([]int, len(p))
|
|
|
|
|
for i := range p {
|
|
|
|
|
ids[i] = p[i].ID
|
|
|
|
|
}
|
|
|
|
|
return tu.RemoveProjectIDs(ids...)
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 14:55:41 +01:00
|
|
|
// ClearUsers clears all "users" edges to the User entity.
|
|
|
|
|
func (tu *TeamUpdate) ClearUsers() *TeamUpdate {
|
|
|
|
|
tu.mutation.ClearUsers()
|
|
|
|
|
return tu
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RemoveUserIDs removes the "users" edge to User entities by IDs.
|
|
|
|
|
func (tu *TeamUpdate) RemoveUserIDs(ids ...int) *TeamUpdate {
|
|
|
|
|
tu.mutation.RemoveUserIDs(ids...)
|
|
|
|
|
return tu
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RemoveUsers removes "users" edges to User entities.
|
|
|
|
|
func (tu *TeamUpdate) RemoveUsers(u ...*User) *TeamUpdate {
|
|
|
|
|
ids := make([]int, len(u))
|
|
|
|
|
for i := range u {
|
|
|
|
|
ids[i] = u[i].ID
|
|
|
|
|
}
|
|
|
|
|
return tu.RemoveUserIDs(ids...)
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 13:08:27 +01:00
|
|
|
// Save executes the query and returns the number of nodes affected by the update operation.
|
|
|
|
|
func (tu *TeamUpdate) Save(ctx context.Context) (int, error) {
|
|
|
|
|
return withHooks(ctx, tu.sqlSave, tu.mutation, tu.hooks)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
|
|
|
func (tu *TeamUpdate) SaveX(ctx context.Context) int {
|
|
|
|
|
affected, err := tu.Save(ctx)
|
|
|
|
|
if err != nil {
|
|
|
|
|
panic(err)
|
|
|
|
|
}
|
|
|
|
|
return affected
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Exec executes the query.
|
|
|
|
|
func (tu *TeamUpdate) Exec(ctx context.Context) error {
|
|
|
|
|
_, err := tu.Save(ctx)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
|
|
|
func (tu *TeamUpdate) ExecX(ctx context.Context) {
|
|
|
|
|
if err := tu.Exec(ctx); err != nil {
|
|
|
|
|
panic(err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (tu *TeamUpdate) sqlSave(ctx context.Context) (n int, err error) {
|
|
|
|
|
_spec := sqlgraph.NewUpdateSpec(team.Table, team.Columns, sqlgraph.NewFieldSpec(team.FieldID, field.TypeInt))
|
|
|
|
|
if ps := tu.mutation.predicates; len(ps) > 0 {
|
|
|
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
|
|
|
for i := range ps {
|
|
|
|
|
ps[i](selector)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if value, ok := tu.mutation.Name(); ok {
|
|
|
|
|
_spec.SetField(team.FieldName, field.TypeString, value)
|
|
|
|
|
}
|
2024-02-14 14:55:41 +01:00
|
|
|
if tu.mutation.ProjectCleared() {
|
2024-02-14 13:08:27 +01:00
|
|
|
edge := &sqlgraph.EdgeSpec{
|
|
|
|
|
Rel: sqlgraph.O2M,
|
|
|
|
|
Inverse: false,
|
2024-02-14 14:55:41 +01:00
|
|
|
Table: team.ProjectTable,
|
|
|
|
|
Columns: []string{team.ProjectColumn},
|
2024-02-14 13:08:27 +01:00
|
|
|
Bidi: false,
|
|
|
|
|
Target: &sqlgraph.EdgeTarget{
|
|
|
|
|
IDSpec: sqlgraph.NewFieldSpec(project.FieldID, field.TypeInt),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
|
|
|
}
|
2024-02-14 14:55:41 +01:00
|
|
|
if nodes := tu.mutation.RemovedProjectIDs(); len(nodes) > 0 && !tu.mutation.ProjectCleared() {
|
2024-02-14 13:08:27 +01:00
|
|
|
edge := &sqlgraph.EdgeSpec{
|
|
|
|
|
Rel: sqlgraph.O2M,
|
|
|
|
|
Inverse: false,
|
2024-02-14 14:55:41 +01:00
|
|
|
Table: team.ProjectTable,
|
|
|
|
|
Columns: []string{team.ProjectColumn},
|
2024-02-14 13:08:27 +01:00
|
|
|
Bidi: false,
|
|
|
|
|
Target: &sqlgraph.EdgeTarget{
|
|
|
|
|
IDSpec: sqlgraph.NewFieldSpec(project.FieldID, field.TypeInt),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
for _, k := range nodes {
|
|
|
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
|
|
|
}
|
|
|
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
|
|
|
}
|
2024-02-14 14:55:41 +01:00
|
|
|
if nodes := tu.mutation.ProjectIDs(); len(nodes) > 0 {
|
2024-02-14 13:08:27 +01:00
|
|
|
edge := &sqlgraph.EdgeSpec{
|
|
|
|
|
Rel: sqlgraph.O2M,
|
|
|
|
|
Inverse: false,
|
2024-02-14 14:55:41 +01:00
|
|
|
Table: team.ProjectTable,
|
|
|
|
|
Columns: []string{team.ProjectColumn},
|
2024-02-14 13:08:27 +01:00
|
|
|
Bidi: false,
|
|
|
|
|
Target: &sqlgraph.EdgeTarget{
|
|
|
|
|
IDSpec: sqlgraph.NewFieldSpec(project.FieldID, field.TypeInt),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
for _, k := range nodes {
|
|
|
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
|
|
|
}
|
|
|
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
|
|
|
}
|
2024-02-14 14:55:41 +01:00
|
|
|
if tu.mutation.UsersCleared() {
|
|
|
|
|
edge := &sqlgraph.EdgeSpec{
|
|
|
|
|
Rel: sqlgraph.M2M,
|
|
|
|
|
Inverse: true,
|
|
|
|
|
Table: team.UsersTable,
|
|
|
|
|
Columns: team.UsersPrimaryKey,
|
|
|
|
|
Bidi: false,
|
|
|
|
|
Target: &sqlgraph.EdgeTarget{
|
|
|
|
|
IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
|
|
|
}
|
|
|
|
|
if nodes := tu.mutation.RemovedUsersIDs(); len(nodes) > 0 && !tu.mutation.UsersCleared() {
|
|
|
|
|
edge := &sqlgraph.EdgeSpec{
|
|
|
|
|
Rel: sqlgraph.M2M,
|
|
|
|
|
Inverse: true,
|
|
|
|
|
Table: team.UsersTable,
|
|
|
|
|
Columns: team.UsersPrimaryKey,
|
|
|
|
|
Bidi: false,
|
|
|
|
|
Target: &sqlgraph.EdgeTarget{
|
|
|
|
|
IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
for _, k := range nodes {
|
|
|
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
|
|
|
}
|
|
|
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
|
|
|
}
|
|
|
|
|
if nodes := tu.mutation.UsersIDs(); len(nodes) > 0 {
|
|
|
|
|
edge := &sqlgraph.EdgeSpec{
|
|
|
|
|
Rel: sqlgraph.M2M,
|
|
|
|
|
Inverse: true,
|
|
|
|
|
Table: team.UsersTable,
|
|
|
|
|
Columns: team.UsersPrimaryKey,
|
|
|
|
|
Bidi: false,
|
|
|
|
|
Target: &sqlgraph.EdgeTarget{
|
|
|
|
|
IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
for _, k := range nodes {
|
|
|
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
|
|
|
}
|
|
|
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
|
|
|
}
|
2024-02-14 13:08:27 +01:00
|
|
|
if n, err = sqlgraph.UpdateNodes(ctx, tu.driver, _spec); err != nil {
|
|
|
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
|
|
|
err = &NotFoundError{team.Label}
|
|
|
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
|
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
|
|
|
}
|
|
|
|
|
return 0, err
|
|
|
|
|
}
|
|
|
|
|
tu.mutation.done = true
|
|
|
|
|
return n, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TeamUpdateOne is the builder for updating a single Team entity.
|
|
|
|
|
type TeamUpdateOne struct {
|
|
|
|
|
config
|
|
|
|
|
fields []string
|
|
|
|
|
hooks []Hook
|
|
|
|
|
mutation *TeamMutation
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetName sets the "name" field.
|
|
|
|
|
func (tuo *TeamUpdateOne) SetName(s string) *TeamUpdateOne {
|
|
|
|
|
tuo.mutation.SetName(s)
|
|
|
|
|
return tuo
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SetNillableName sets the "name" field if the given value is not nil.
|
|
|
|
|
func (tuo *TeamUpdateOne) SetNillableName(s *string) *TeamUpdateOne {
|
|
|
|
|
if s != nil {
|
|
|
|
|
tuo.SetName(*s)
|
|
|
|
|
}
|
|
|
|
|
return tuo
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 14:55:41 +01:00
|
|
|
// AddProjectIDs adds the "project" edge to the Project entity by IDs.
|
2024-02-14 13:08:27 +01:00
|
|
|
func (tuo *TeamUpdateOne) AddProjectIDs(ids ...int) *TeamUpdateOne {
|
|
|
|
|
tuo.mutation.AddProjectIDs(ids...)
|
|
|
|
|
return tuo
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 14:55:41 +01:00
|
|
|
// AddProject adds the "project" edges to the Project entity.
|
|
|
|
|
func (tuo *TeamUpdateOne) AddProject(p ...*Project) *TeamUpdateOne {
|
2024-02-14 13:08:27 +01:00
|
|
|
ids := make([]int, len(p))
|
|
|
|
|
for i := range p {
|
|
|
|
|
ids[i] = p[i].ID
|
|
|
|
|
}
|
|
|
|
|
return tuo.AddProjectIDs(ids...)
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 14:55:41 +01:00
|
|
|
// AddUserIDs adds the "users" edge to the User entity by IDs.
|
|
|
|
|
func (tuo *TeamUpdateOne) AddUserIDs(ids ...int) *TeamUpdateOne {
|
|
|
|
|
tuo.mutation.AddUserIDs(ids...)
|
|
|
|
|
return tuo
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// AddUsers adds the "users" edges to the User entity.
|
|
|
|
|
func (tuo *TeamUpdateOne) AddUsers(u ...*User) *TeamUpdateOne {
|
|
|
|
|
ids := make([]int, len(u))
|
|
|
|
|
for i := range u {
|
|
|
|
|
ids[i] = u[i].ID
|
|
|
|
|
}
|
|
|
|
|
return tuo.AddUserIDs(ids...)
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 13:08:27 +01:00
|
|
|
// Mutation returns the TeamMutation object of the builder.
|
|
|
|
|
func (tuo *TeamUpdateOne) Mutation() *TeamMutation {
|
|
|
|
|
return tuo.mutation
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 14:55:41 +01:00
|
|
|
// ClearProject clears all "project" edges to the Project entity.
|
|
|
|
|
func (tuo *TeamUpdateOne) ClearProject() *TeamUpdateOne {
|
|
|
|
|
tuo.mutation.ClearProject()
|
2024-02-14 13:08:27 +01:00
|
|
|
return tuo
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 14:55:41 +01:00
|
|
|
// RemoveProjectIDs removes the "project" edge to Project entities by IDs.
|
2024-02-14 13:08:27 +01:00
|
|
|
func (tuo *TeamUpdateOne) RemoveProjectIDs(ids ...int) *TeamUpdateOne {
|
|
|
|
|
tuo.mutation.RemoveProjectIDs(ids...)
|
|
|
|
|
return tuo
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 14:55:41 +01:00
|
|
|
// RemoveProject removes "project" edges to Project entities.
|
|
|
|
|
func (tuo *TeamUpdateOne) RemoveProject(p ...*Project) *TeamUpdateOne {
|
2024-02-14 13:08:27 +01:00
|
|
|
ids := make([]int, len(p))
|
|
|
|
|
for i := range p {
|
|
|
|
|
ids[i] = p[i].ID
|
|
|
|
|
}
|
|
|
|
|
return tuo.RemoveProjectIDs(ids...)
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 14:55:41 +01:00
|
|
|
// ClearUsers clears all "users" edges to the User entity.
|
|
|
|
|
func (tuo *TeamUpdateOne) ClearUsers() *TeamUpdateOne {
|
|
|
|
|
tuo.mutation.ClearUsers()
|
|
|
|
|
return tuo
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RemoveUserIDs removes the "users" edge to User entities by IDs.
|
|
|
|
|
func (tuo *TeamUpdateOne) RemoveUserIDs(ids ...int) *TeamUpdateOne {
|
|
|
|
|
tuo.mutation.RemoveUserIDs(ids...)
|
|
|
|
|
return tuo
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RemoveUsers removes "users" edges to User entities.
|
|
|
|
|
func (tuo *TeamUpdateOne) RemoveUsers(u ...*User) *TeamUpdateOne {
|
|
|
|
|
ids := make([]int, len(u))
|
|
|
|
|
for i := range u {
|
|
|
|
|
ids[i] = u[i].ID
|
|
|
|
|
}
|
|
|
|
|
return tuo.RemoveUserIDs(ids...)
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 13:08:27 +01:00
|
|
|
// Where appends a list predicates to the TeamUpdate builder.
|
|
|
|
|
func (tuo *TeamUpdateOne) Where(ps ...predicate.Team) *TeamUpdateOne {
|
|
|
|
|
tuo.mutation.Where(ps...)
|
|
|
|
|
return tuo
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Select allows selecting one or more fields (columns) of the returned entity.
|
|
|
|
|
// The default is selecting all fields defined in the entity schema.
|
|
|
|
|
func (tuo *TeamUpdateOne) Select(field string, fields ...string) *TeamUpdateOne {
|
|
|
|
|
tuo.fields = append([]string{field}, fields...)
|
|
|
|
|
return tuo
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Save executes the query and returns the updated Team entity.
|
|
|
|
|
func (tuo *TeamUpdateOne) Save(ctx context.Context) (*Team, error) {
|
|
|
|
|
return withHooks(ctx, tuo.sqlSave, tuo.mutation, tuo.hooks)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
|
|
|
func (tuo *TeamUpdateOne) SaveX(ctx context.Context) *Team {
|
|
|
|
|
node, err := tuo.Save(ctx)
|
|
|
|
|
if err != nil {
|
|
|
|
|
panic(err)
|
|
|
|
|
}
|
|
|
|
|
return node
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Exec executes the query on the entity.
|
|
|
|
|
func (tuo *TeamUpdateOne) Exec(ctx context.Context) error {
|
|
|
|
|
_, err := tuo.Save(ctx)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
|
|
|
func (tuo *TeamUpdateOne) ExecX(ctx context.Context) {
|
|
|
|
|
if err := tuo.Exec(ctx); err != nil {
|
|
|
|
|
panic(err)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (tuo *TeamUpdateOne) sqlSave(ctx context.Context) (_node *Team, err error) {
|
|
|
|
|
_spec := sqlgraph.NewUpdateSpec(team.Table, team.Columns, sqlgraph.NewFieldSpec(team.FieldID, field.TypeInt))
|
|
|
|
|
id, ok := tuo.mutation.ID()
|
|
|
|
|
if !ok {
|
|
|
|
|
return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Team.id" for update`)}
|
|
|
|
|
}
|
|
|
|
|
_spec.Node.ID.Value = id
|
|
|
|
|
if fields := tuo.fields; len(fields) > 0 {
|
|
|
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
|
|
|
_spec.Node.Columns = append(_spec.Node.Columns, team.FieldID)
|
|
|
|
|
for _, f := range fields {
|
|
|
|
|
if !team.ValidColumn(f) {
|
|
|
|
|
return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
|
|
|
}
|
|
|
|
|
if f != team.FieldID {
|
|
|
|
|
_spec.Node.Columns = append(_spec.Node.Columns, f)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ps := tuo.mutation.predicates; len(ps) > 0 {
|
|
|
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
|
|
|
for i := range ps {
|
|
|
|
|
ps[i](selector)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if value, ok := tuo.mutation.Name(); ok {
|
|
|
|
|
_spec.SetField(team.FieldName, field.TypeString, value)
|
|
|
|
|
}
|
2024-02-14 14:55:41 +01:00
|
|
|
if tuo.mutation.ProjectCleared() {
|
2024-02-14 13:08:27 +01:00
|
|
|
edge := &sqlgraph.EdgeSpec{
|
|
|
|
|
Rel: sqlgraph.O2M,
|
|
|
|
|
Inverse: false,
|
2024-02-14 14:55:41 +01:00
|
|
|
Table: team.ProjectTable,
|
|
|
|
|
Columns: []string{team.ProjectColumn},
|
2024-02-14 13:08:27 +01:00
|
|
|
Bidi: false,
|
|
|
|
|
Target: &sqlgraph.EdgeTarget{
|
|
|
|
|
IDSpec: sqlgraph.NewFieldSpec(project.FieldID, field.TypeInt),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
|
|
|
}
|
2024-02-14 14:55:41 +01:00
|
|
|
if nodes := tuo.mutation.RemovedProjectIDs(); len(nodes) > 0 && !tuo.mutation.ProjectCleared() {
|
2024-02-14 13:08:27 +01:00
|
|
|
edge := &sqlgraph.EdgeSpec{
|
|
|
|
|
Rel: sqlgraph.O2M,
|
|
|
|
|
Inverse: false,
|
2024-02-14 14:55:41 +01:00
|
|
|
Table: team.ProjectTable,
|
|
|
|
|
Columns: []string{team.ProjectColumn},
|
2024-02-14 13:08:27 +01:00
|
|
|
Bidi: false,
|
|
|
|
|
Target: &sqlgraph.EdgeTarget{
|
|
|
|
|
IDSpec: sqlgraph.NewFieldSpec(project.FieldID, field.TypeInt),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
for _, k := range nodes {
|
|
|
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
|
|
|
}
|
|
|
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
|
|
|
}
|
2024-02-14 14:55:41 +01:00
|
|
|
if nodes := tuo.mutation.ProjectIDs(); len(nodes) > 0 {
|
2024-02-14 13:08:27 +01:00
|
|
|
edge := &sqlgraph.EdgeSpec{
|
|
|
|
|
Rel: sqlgraph.O2M,
|
|
|
|
|
Inverse: false,
|
2024-02-14 14:55:41 +01:00
|
|
|
Table: team.ProjectTable,
|
|
|
|
|
Columns: []string{team.ProjectColumn},
|
2024-02-14 13:08:27 +01:00
|
|
|
Bidi: false,
|
|
|
|
|
Target: &sqlgraph.EdgeTarget{
|
|
|
|
|
IDSpec: sqlgraph.NewFieldSpec(project.FieldID, field.TypeInt),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
for _, k := range nodes {
|
|
|
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
|
|
|
}
|
|
|
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
|
|
|
}
|
2024-02-14 14:55:41 +01:00
|
|
|
if tuo.mutation.UsersCleared() {
|
|
|
|
|
edge := &sqlgraph.EdgeSpec{
|
|
|
|
|
Rel: sqlgraph.M2M,
|
|
|
|
|
Inverse: true,
|
|
|
|
|
Table: team.UsersTable,
|
|
|
|
|
Columns: team.UsersPrimaryKey,
|
|
|
|
|
Bidi: false,
|
|
|
|
|
Target: &sqlgraph.EdgeTarget{
|
|
|
|
|
IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
|
|
|
}
|
|
|
|
|
if nodes := tuo.mutation.RemovedUsersIDs(); len(nodes) > 0 && !tuo.mutation.UsersCleared() {
|
|
|
|
|
edge := &sqlgraph.EdgeSpec{
|
|
|
|
|
Rel: sqlgraph.M2M,
|
|
|
|
|
Inverse: true,
|
|
|
|
|
Table: team.UsersTable,
|
|
|
|
|
Columns: team.UsersPrimaryKey,
|
|
|
|
|
Bidi: false,
|
|
|
|
|
Target: &sqlgraph.EdgeTarget{
|
|
|
|
|
IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
for _, k := range nodes {
|
|
|
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
|
|
|
}
|
|
|
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
|
|
|
}
|
|
|
|
|
if nodes := tuo.mutation.UsersIDs(); len(nodes) > 0 {
|
|
|
|
|
edge := &sqlgraph.EdgeSpec{
|
|
|
|
|
Rel: sqlgraph.M2M,
|
|
|
|
|
Inverse: true,
|
|
|
|
|
Table: team.UsersTable,
|
|
|
|
|
Columns: team.UsersPrimaryKey,
|
|
|
|
|
Bidi: false,
|
|
|
|
|
Target: &sqlgraph.EdgeTarget{
|
|
|
|
|
IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
for _, k := range nodes {
|
|
|
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
|
|
|
}
|
|
|
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
|
|
|
}
|
2024-02-14 13:08:27 +01:00
|
|
|
_node = &Team{config: tuo.config}
|
|
|
|
|
_spec.Assign = _node.assignValues
|
|
|
|
|
_spec.ScanValues = _node.scanValues
|
|
|
|
|
if err = sqlgraph.UpdateNode(ctx, tuo.driver, _spec); err != nil {
|
|
|
|
|
if _, ok := err.(*sqlgraph.NotFoundError); ok {
|
|
|
|
|
err = &NotFoundError{team.Label}
|
|
|
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
|
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
|
|
|
}
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
tuo.mutation.done = true
|
|
|
|
|
return _node, nil
|
|
|
|
|
}
|