672 lines
18 KiB
Go
672 lines
18 KiB
Go
// Code generated by ent, DO NOT EDIT.
|
|
|
|
package ent
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"portfolio/database/ent/predicate"
|
|
"portfolio/database/ent/project"
|
|
"portfolio/database/ent/team"
|
|
"portfolio/database/ent/user"
|
|
|
|
"entgo.io/ent/dialect/sql"
|
|
"entgo.io/ent/dialect/sql/sqlgraph"
|
|
"entgo.io/ent/schema/field"
|
|
)
|
|
|
|
// ProjectUpdate is the builder for updating Project entities.
|
|
type ProjectUpdate struct {
|
|
config
|
|
hooks []Hook
|
|
mutation *ProjectMutation
|
|
}
|
|
|
|
// Where appends a list predicates to the ProjectUpdate builder.
|
|
func (pu *ProjectUpdate) Where(ps ...predicate.Project) *ProjectUpdate {
|
|
pu.mutation.Where(ps...)
|
|
return pu
|
|
}
|
|
|
|
// SetName sets the "name" field.
|
|
func (pu *ProjectUpdate) SetName(s string) *ProjectUpdate {
|
|
pu.mutation.SetName(s)
|
|
return pu
|
|
}
|
|
|
|
// SetNillableName sets the "name" field if the given value is not nil.
|
|
func (pu *ProjectUpdate) SetNillableName(s *string) *ProjectUpdate {
|
|
if s != nil {
|
|
pu.SetName(*s)
|
|
}
|
|
return pu
|
|
}
|
|
|
|
// SetDescription sets the "description" field.
|
|
func (pu *ProjectUpdate) SetDescription(s string) *ProjectUpdate {
|
|
pu.mutation.SetDescription(s)
|
|
return pu
|
|
}
|
|
|
|
// SetNillableDescription sets the "description" field if the given value is not nil.
|
|
func (pu *ProjectUpdate) SetNillableDescription(s *string) *ProjectUpdate {
|
|
if s != nil {
|
|
pu.SetDescription(*s)
|
|
}
|
|
return pu
|
|
}
|
|
|
|
// SetURL sets the "url" field.
|
|
func (pu *ProjectUpdate) SetURL(s string) *ProjectUpdate {
|
|
pu.mutation.SetURL(s)
|
|
return pu
|
|
}
|
|
|
|
// SetNillableURL sets the "url" field if the given value is not nil.
|
|
func (pu *ProjectUpdate) SetNillableURL(s *string) *ProjectUpdate {
|
|
if s != nil {
|
|
pu.SetURL(*s)
|
|
}
|
|
return pu
|
|
}
|
|
|
|
// SetImageURL sets the "image_url" field.
|
|
func (pu *ProjectUpdate) SetImageURL(s string) *ProjectUpdate {
|
|
pu.mutation.SetImageURL(s)
|
|
return pu
|
|
}
|
|
|
|
// SetNillableImageURL sets the "image_url" field if the given value is not nil.
|
|
func (pu *ProjectUpdate) SetNillableImageURL(s *string) *ProjectUpdate {
|
|
if s != nil {
|
|
pu.SetImageURL(*s)
|
|
}
|
|
return pu
|
|
}
|
|
|
|
// SetDocURL sets the "doc_url" field.
|
|
func (pu *ProjectUpdate) SetDocURL(s string) *ProjectUpdate {
|
|
pu.mutation.SetDocURL(s)
|
|
return pu
|
|
}
|
|
|
|
// SetNillableDocURL sets the "doc_url" field if the given value is not nil.
|
|
func (pu *ProjectUpdate) SetNillableDocURL(s *string) *ProjectUpdate {
|
|
if s != nil {
|
|
pu.SetDocURL(*s)
|
|
}
|
|
return pu
|
|
}
|
|
|
|
// AddUserIDs adds the "users" edge to the User entity by IDs.
|
|
func (pu *ProjectUpdate) AddUserIDs(ids ...int) *ProjectUpdate {
|
|
pu.mutation.AddUserIDs(ids...)
|
|
return pu
|
|
}
|
|
|
|
// AddUsers adds the "users" edges to the User entity.
|
|
func (pu *ProjectUpdate) AddUsers(u ...*User) *ProjectUpdate {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return pu.AddUserIDs(ids...)
|
|
}
|
|
|
|
// AddTeamIDs adds the "teams" edge to the Team entity by IDs.
|
|
func (pu *ProjectUpdate) AddTeamIDs(ids ...int) *ProjectUpdate {
|
|
pu.mutation.AddTeamIDs(ids...)
|
|
return pu
|
|
}
|
|
|
|
// AddTeams adds the "teams" edges to the Team entity.
|
|
func (pu *ProjectUpdate) AddTeams(t ...*Team) *ProjectUpdate {
|
|
ids := make([]int, len(t))
|
|
for i := range t {
|
|
ids[i] = t[i].ID
|
|
}
|
|
return pu.AddTeamIDs(ids...)
|
|
}
|
|
|
|
// Mutation returns the ProjectMutation object of the builder.
|
|
func (pu *ProjectUpdate) Mutation() *ProjectMutation {
|
|
return pu.mutation
|
|
}
|
|
|
|
// ClearUsers clears all "users" edges to the User entity.
|
|
func (pu *ProjectUpdate) ClearUsers() *ProjectUpdate {
|
|
pu.mutation.ClearUsers()
|
|
return pu
|
|
}
|
|
|
|
// RemoveUserIDs removes the "users" edge to User entities by IDs.
|
|
func (pu *ProjectUpdate) RemoveUserIDs(ids ...int) *ProjectUpdate {
|
|
pu.mutation.RemoveUserIDs(ids...)
|
|
return pu
|
|
}
|
|
|
|
// RemoveUsers removes "users" edges to User entities.
|
|
func (pu *ProjectUpdate) RemoveUsers(u ...*User) *ProjectUpdate {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return pu.RemoveUserIDs(ids...)
|
|
}
|
|
|
|
// ClearTeams clears all "teams" edges to the Team entity.
|
|
func (pu *ProjectUpdate) ClearTeams() *ProjectUpdate {
|
|
pu.mutation.ClearTeams()
|
|
return pu
|
|
}
|
|
|
|
// RemoveTeamIDs removes the "teams" edge to Team entities by IDs.
|
|
func (pu *ProjectUpdate) RemoveTeamIDs(ids ...int) *ProjectUpdate {
|
|
pu.mutation.RemoveTeamIDs(ids...)
|
|
return pu
|
|
}
|
|
|
|
// RemoveTeams removes "teams" edges to Team entities.
|
|
func (pu *ProjectUpdate) RemoveTeams(t ...*Team) *ProjectUpdate {
|
|
ids := make([]int, len(t))
|
|
for i := range t {
|
|
ids[i] = t[i].ID
|
|
}
|
|
return pu.RemoveTeamIDs(ids...)
|
|
}
|
|
|
|
// Save executes the query and returns the number of nodes affected by the update operation.
|
|
func (pu *ProjectUpdate) Save(ctx context.Context) (int, error) {
|
|
return withHooks(ctx, pu.sqlSave, pu.mutation, pu.hooks)
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (pu *ProjectUpdate) SaveX(ctx context.Context) int {
|
|
affected, err := pu.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return affected
|
|
}
|
|
|
|
// Exec executes the query.
|
|
func (pu *ProjectUpdate) Exec(ctx context.Context) error {
|
|
_, err := pu.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (pu *ProjectUpdate) ExecX(ctx context.Context) {
|
|
if err := pu.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func (pu *ProjectUpdate) sqlSave(ctx context.Context) (n int, err error) {
|
|
_spec := sqlgraph.NewUpdateSpec(project.Table, project.Columns, sqlgraph.NewFieldSpec(project.FieldID, field.TypeInt))
|
|
if ps := pu.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := pu.mutation.Name(); ok {
|
|
_spec.SetField(project.FieldName, field.TypeString, value)
|
|
}
|
|
if value, ok := pu.mutation.Description(); ok {
|
|
_spec.SetField(project.FieldDescription, field.TypeString, value)
|
|
}
|
|
if value, ok := pu.mutation.URL(); ok {
|
|
_spec.SetField(project.FieldURL, field.TypeString, value)
|
|
}
|
|
if value, ok := pu.mutation.ImageURL(); ok {
|
|
_spec.SetField(project.FieldImageURL, field.TypeString, value)
|
|
}
|
|
if value, ok := pu.mutation.DocURL(); ok {
|
|
_spec.SetField(project.FieldDocURL, field.TypeString, value)
|
|
}
|
|
if pu.mutation.UsersCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: project.UsersTable,
|
|
Columns: project.UsersPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt),
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := pu.mutation.RemovedUsersIDs(); len(nodes) > 0 && !pu.mutation.UsersCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: project.UsersTable,
|
|
Columns: project.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 := pu.mutation.UsersIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: project.UsersTable,
|
|
Columns: project.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)
|
|
}
|
|
if pu.mutation.TeamsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: project.TeamsTable,
|
|
Columns: project.TeamsPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: sqlgraph.NewFieldSpec(team.FieldID, field.TypeInt),
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := pu.mutation.RemovedTeamsIDs(); len(nodes) > 0 && !pu.mutation.TeamsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: project.TeamsTable,
|
|
Columns: project.TeamsPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: sqlgraph.NewFieldSpec(team.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 := pu.mutation.TeamsIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: project.TeamsTable,
|
|
Columns: project.TeamsPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: sqlgraph.NewFieldSpec(team.FieldID, field.TypeInt),
|
|
},
|
|
}
|
|
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{project.Label}
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return 0, err
|
|
}
|
|
pu.mutation.done = true
|
|
return n, nil
|
|
}
|
|
|
|
// ProjectUpdateOne is the builder for updating a single Project entity.
|
|
type ProjectUpdateOne struct {
|
|
config
|
|
fields []string
|
|
hooks []Hook
|
|
mutation *ProjectMutation
|
|
}
|
|
|
|
// SetName sets the "name" field.
|
|
func (puo *ProjectUpdateOne) SetName(s string) *ProjectUpdateOne {
|
|
puo.mutation.SetName(s)
|
|
return puo
|
|
}
|
|
|
|
// SetNillableName sets the "name" field if the given value is not nil.
|
|
func (puo *ProjectUpdateOne) SetNillableName(s *string) *ProjectUpdateOne {
|
|
if s != nil {
|
|
puo.SetName(*s)
|
|
}
|
|
return puo
|
|
}
|
|
|
|
// SetDescription sets the "description" field.
|
|
func (puo *ProjectUpdateOne) SetDescription(s string) *ProjectUpdateOne {
|
|
puo.mutation.SetDescription(s)
|
|
return puo
|
|
}
|
|
|
|
// SetNillableDescription sets the "description" field if the given value is not nil.
|
|
func (puo *ProjectUpdateOne) SetNillableDescription(s *string) *ProjectUpdateOne {
|
|
if s != nil {
|
|
puo.SetDescription(*s)
|
|
}
|
|
return puo
|
|
}
|
|
|
|
// SetURL sets the "url" field.
|
|
func (puo *ProjectUpdateOne) SetURL(s string) *ProjectUpdateOne {
|
|
puo.mutation.SetURL(s)
|
|
return puo
|
|
}
|
|
|
|
// SetNillableURL sets the "url" field if the given value is not nil.
|
|
func (puo *ProjectUpdateOne) SetNillableURL(s *string) *ProjectUpdateOne {
|
|
if s != nil {
|
|
puo.SetURL(*s)
|
|
}
|
|
return puo
|
|
}
|
|
|
|
// SetImageURL sets the "image_url" field.
|
|
func (puo *ProjectUpdateOne) SetImageURL(s string) *ProjectUpdateOne {
|
|
puo.mutation.SetImageURL(s)
|
|
return puo
|
|
}
|
|
|
|
// SetNillableImageURL sets the "image_url" field if the given value is not nil.
|
|
func (puo *ProjectUpdateOne) SetNillableImageURL(s *string) *ProjectUpdateOne {
|
|
if s != nil {
|
|
puo.SetImageURL(*s)
|
|
}
|
|
return puo
|
|
}
|
|
|
|
// SetDocURL sets the "doc_url" field.
|
|
func (puo *ProjectUpdateOne) SetDocURL(s string) *ProjectUpdateOne {
|
|
puo.mutation.SetDocURL(s)
|
|
return puo
|
|
}
|
|
|
|
// SetNillableDocURL sets the "doc_url" field if the given value is not nil.
|
|
func (puo *ProjectUpdateOne) SetNillableDocURL(s *string) *ProjectUpdateOne {
|
|
if s != nil {
|
|
puo.SetDocURL(*s)
|
|
}
|
|
return puo
|
|
}
|
|
|
|
// AddUserIDs adds the "users" edge to the User entity by IDs.
|
|
func (puo *ProjectUpdateOne) AddUserIDs(ids ...int) *ProjectUpdateOne {
|
|
puo.mutation.AddUserIDs(ids...)
|
|
return puo
|
|
}
|
|
|
|
// AddUsers adds the "users" edges to the User entity.
|
|
func (puo *ProjectUpdateOne) AddUsers(u ...*User) *ProjectUpdateOne {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return puo.AddUserIDs(ids...)
|
|
}
|
|
|
|
// AddTeamIDs adds the "teams" edge to the Team entity by IDs.
|
|
func (puo *ProjectUpdateOne) AddTeamIDs(ids ...int) *ProjectUpdateOne {
|
|
puo.mutation.AddTeamIDs(ids...)
|
|
return puo
|
|
}
|
|
|
|
// AddTeams adds the "teams" edges to the Team entity.
|
|
func (puo *ProjectUpdateOne) AddTeams(t ...*Team) *ProjectUpdateOne {
|
|
ids := make([]int, len(t))
|
|
for i := range t {
|
|
ids[i] = t[i].ID
|
|
}
|
|
return puo.AddTeamIDs(ids...)
|
|
}
|
|
|
|
// Mutation returns the ProjectMutation object of the builder.
|
|
func (puo *ProjectUpdateOne) Mutation() *ProjectMutation {
|
|
return puo.mutation
|
|
}
|
|
|
|
// ClearUsers clears all "users" edges to the User entity.
|
|
func (puo *ProjectUpdateOne) ClearUsers() *ProjectUpdateOne {
|
|
puo.mutation.ClearUsers()
|
|
return puo
|
|
}
|
|
|
|
// RemoveUserIDs removes the "users" edge to User entities by IDs.
|
|
func (puo *ProjectUpdateOne) RemoveUserIDs(ids ...int) *ProjectUpdateOne {
|
|
puo.mutation.RemoveUserIDs(ids...)
|
|
return puo
|
|
}
|
|
|
|
// RemoveUsers removes "users" edges to User entities.
|
|
func (puo *ProjectUpdateOne) RemoveUsers(u ...*User) *ProjectUpdateOne {
|
|
ids := make([]int, len(u))
|
|
for i := range u {
|
|
ids[i] = u[i].ID
|
|
}
|
|
return puo.RemoveUserIDs(ids...)
|
|
}
|
|
|
|
// ClearTeams clears all "teams" edges to the Team entity.
|
|
func (puo *ProjectUpdateOne) ClearTeams() *ProjectUpdateOne {
|
|
puo.mutation.ClearTeams()
|
|
return puo
|
|
}
|
|
|
|
// RemoveTeamIDs removes the "teams" edge to Team entities by IDs.
|
|
func (puo *ProjectUpdateOne) RemoveTeamIDs(ids ...int) *ProjectUpdateOne {
|
|
puo.mutation.RemoveTeamIDs(ids...)
|
|
return puo
|
|
}
|
|
|
|
// RemoveTeams removes "teams" edges to Team entities.
|
|
func (puo *ProjectUpdateOne) RemoveTeams(t ...*Team) *ProjectUpdateOne {
|
|
ids := make([]int, len(t))
|
|
for i := range t {
|
|
ids[i] = t[i].ID
|
|
}
|
|
return puo.RemoveTeamIDs(ids...)
|
|
}
|
|
|
|
// Where appends a list predicates to the ProjectUpdate builder.
|
|
func (puo *ProjectUpdateOne) Where(ps ...predicate.Project) *ProjectUpdateOne {
|
|
puo.mutation.Where(ps...)
|
|
return puo
|
|
}
|
|
|
|
// Select allows selecting one or more fields (columns) of the returned entity.
|
|
// The default is selecting all fields defined in the entity schema.
|
|
func (puo *ProjectUpdateOne) Select(field string, fields ...string) *ProjectUpdateOne {
|
|
puo.fields = append([]string{field}, fields...)
|
|
return puo
|
|
}
|
|
|
|
// Save executes the query and returns the updated Project entity.
|
|
func (puo *ProjectUpdateOne) Save(ctx context.Context) (*Project, error) {
|
|
return withHooks(ctx, puo.sqlSave, puo.mutation, puo.hooks)
|
|
}
|
|
|
|
// SaveX is like Save, but panics if an error occurs.
|
|
func (puo *ProjectUpdateOne) SaveX(ctx context.Context) *Project {
|
|
node, err := puo.Save(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return node
|
|
}
|
|
|
|
// Exec executes the query on the entity.
|
|
func (puo *ProjectUpdateOne) Exec(ctx context.Context) error {
|
|
_, err := puo.Save(ctx)
|
|
return err
|
|
}
|
|
|
|
// ExecX is like Exec, but panics if an error occurs.
|
|
func (puo *ProjectUpdateOne) ExecX(ctx context.Context) {
|
|
if err := puo.Exec(ctx); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func (puo *ProjectUpdateOne) sqlSave(ctx context.Context) (_node *Project, err error) {
|
|
_spec := sqlgraph.NewUpdateSpec(project.Table, project.Columns, sqlgraph.NewFieldSpec(project.FieldID, field.TypeInt))
|
|
id, ok := puo.mutation.ID()
|
|
if !ok {
|
|
return nil, &ValidationError{Name: "id", err: errors.New(`ent: missing "Project.id" for update`)}
|
|
}
|
|
_spec.Node.ID.Value = id
|
|
if fields := puo.fields; len(fields) > 0 {
|
|
_spec.Node.Columns = make([]string, 0, len(fields))
|
|
_spec.Node.Columns = append(_spec.Node.Columns, project.FieldID)
|
|
for _, f := range fields {
|
|
if !project.ValidColumn(f) {
|
|
return nil, &ValidationError{Name: f, err: fmt.Errorf("ent: invalid field %q for query", f)}
|
|
}
|
|
if f != project.FieldID {
|
|
_spec.Node.Columns = append(_spec.Node.Columns, f)
|
|
}
|
|
}
|
|
}
|
|
if ps := puo.mutation.predicates; len(ps) > 0 {
|
|
_spec.Predicate = func(selector *sql.Selector) {
|
|
for i := range ps {
|
|
ps[i](selector)
|
|
}
|
|
}
|
|
}
|
|
if value, ok := puo.mutation.Name(); ok {
|
|
_spec.SetField(project.FieldName, field.TypeString, value)
|
|
}
|
|
if value, ok := puo.mutation.Description(); ok {
|
|
_spec.SetField(project.FieldDescription, field.TypeString, value)
|
|
}
|
|
if value, ok := puo.mutation.URL(); ok {
|
|
_spec.SetField(project.FieldURL, field.TypeString, value)
|
|
}
|
|
if value, ok := puo.mutation.ImageURL(); ok {
|
|
_spec.SetField(project.FieldImageURL, field.TypeString, value)
|
|
}
|
|
if value, ok := puo.mutation.DocURL(); ok {
|
|
_spec.SetField(project.FieldDocURL, field.TypeString, value)
|
|
}
|
|
if puo.mutation.UsersCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: project.UsersTable,
|
|
Columns: project.UsersPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: sqlgraph.NewFieldSpec(user.FieldID, field.TypeInt),
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := puo.mutation.RemovedUsersIDs(); len(nodes) > 0 && !puo.mutation.UsersCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: project.UsersTable,
|
|
Columns: project.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 := puo.mutation.UsersIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: project.UsersTable,
|
|
Columns: project.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)
|
|
}
|
|
if puo.mutation.TeamsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: project.TeamsTable,
|
|
Columns: project.TeamsPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: sqlgraph.NewFieldSpec(team.FieldID, field.TypeInt),
|
|
},
|
|
}
|
|
_spec.Edges.Clear = append(_spec.Edges.Clear, edge)
|
|
}
|
|
if nodes := puo.mutation.RemovedTeamsIDs(); len(nodes) > 0 && !puo.mutation.TeamsCleared() {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: project.TeamsTable,
|
|
Columns: project.TeamsPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: sqlgraph.NewFieldSpec(team.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 := puo.mutation.TeamsIDs(); len(nodes) > 0 {
|
|
edge := &sqlgraph.EdgeSpec{
|
|
Rel: sqlgraph.M2M,
|
|
Inverse: true,
|
|
Table: project.TeamsTable,
|
|
Columns: project.TeamsPrimaryKey,
|
|
Bidi: false,
|
|
Target: &sqlgraph.EdgeTarget{
|
|
IDSpec: sqlgraph.NewFieldSpec(team.FieldID, field.TypeInt),
|
|
},
|
|
}
|
|
for _, k := range nodes {
|
|
edge.Target.Nodes = append(edge.Target.Nodes, k)
|
|
}
|
|
_spec.Edges.Add = append(_spec.Edges.Add, edge)
|
|
}
|
|
_node = &Project{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{project.Label}
|
|
} else if sqlgraph.IsConstraintError(err) {
|
|
err = &ConstraintError{msg: err.Error(), wrap: err}
|
|
}
|
|
return nil, err
|
|
}
|
|
puo.mutation.done = true
|
|
return _node, nil
|
|
}
|