12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355 |
- // Code generated by ent, DO NOT EDIT.
- package ent
- import (
- "context"
- "errors"
- "fmt"
- "time"
- "wechat-api/ent/custom_types"
- "wechat-api/ent/messagerecords"
- "wechat-api/ent/sopnode"
- "wechat-api/ent/sopstage"
- "entgo.io/ent/dialect/sql"
- "entgo.io/ent/dialect/sql/sqlgraph"
- "entgo.io/ent/schema/field"
- )
- // SopNodeCreate is the builder for creating a SopNode entity.
- type SopNodeCreate struct {
- config
- mutation *SopNodeMutation
- hooks []Hook
- conflict []sql.ConflictOption
- }
- // SetCreatedAt sets the "created_at" field.
- func (snc *SopNodeCreate) SetCreatedAt(t time.Time) *SopNodeCreate {
- snc.mutation.SetCreatedAt(t)
- return snc
- }
- // SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
- func (snc *SopNodeCreate) SetNillableCreatedAt(t *time.Time) *SopNodeCreate {
- if t != nil {
- snc.SetCreatedAt(*t)
- }
- return snc
- }
- // SetUpdatedAt sets the "updated_at" field.
- func (snc *SopNodeCreate) SetUpdatedAt(t time.Time) *SopNodeCreate {
- snc.mutation.SetUpdatedAt(t)
- return snc
- }
- // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
- func (snc *SopNodeCreate) SetNillableUpdatedAt(t *time.Time) *SopNodeCreate {
- if t != nil {
- snc.SetUpdatedAt(*t)
- }
- return snc
- }
- // SetStatus sets the "status" field.
- func (snc *SopNodeCreate) SetStatus(u uint8) *SopNodeCreate {
- snc.mutation.SetStatus(u)
- return snc
- }
- // SetNillableStatus sets the "status" field if the given value is not nil.
- func (snc *SopNodeCreate) SetNillableStatus(u *uint8) *SopNodeCreate {
- if u != nil {
- snc.SetStatus(*u)
- }
- return snc
- }
- // SetDeletedAt sets the "deleted_at" field.
- func (snc *SopNodeCreate) SetDeletedAt(t time.Time) *SopNodeCreate {
- snc.mutation.SetDeletedAt(t)
- return snc
- }
- // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
- func (snc *SopNodeCreate) SetNillableDeletedAt(t *time.Time) *SopNodeCreate {
- if t != nil {
- snc.SetDeletedAt(*t)
- }
- return snc
- }
- // SetStageID sets the "stage_id" field.
- func (snc *SopNodeCreate) SetStageID(u uint64) *SopNodeCreate {
- snc.mutation.SetStageID(u)
- return snc
- }
- // SetParentID sets the "parent_id" field.
- func (snc *SopNodeCreate) SetParentID(u uint64) *SopNodeCreate {
- snc.mutation.SetParentID(u)
- return snc
- }
- // SetName sets the "name" field.
- func (snc *SopNodeCreate) SetName(s string) *SopNodeCreate {
- snc.mutation.SetName(s)
- return snc
- }
- // SetNillableName sets the "name" field if the given value is not nil.
- func (snc *SopNodeCreate) SetNillableName(s *string) *SopNodeCreate {
- if s != nil {
- snc.SetName(*s)
- }
- return snc
- }
- // SetConditionType sets the "condition_type" field.
- func (snc *SopNodeCreate) SetConditionType(i int) *SopNodeCreate {
- snc.mutation.SetConditionType(i)
- return snc
- }
- // SetNillableConditionType sets the "condition_type" field if the given value is not nil.
- func (snc *SopNodeCreate) SetNillableConditionType(i *int) *SopNodeCreate {
- if i != nil {
- snc.SetConditionType(*i)
- }
- return snc
- }
- // SetConditionList sets the "condition_list" field.
- func (snc *SopNodeCreate) SetConditionList(s []string) *SopNodeCreate {
- snc.mutation.SetConditionList(s)
- return snc
- }
- // SetNoReplyCondition sets the "no_reply_condition" field.
- func (snc *SopNodeCreate) SetNoReplyCondition(u uint64) *SopNodeCreate {
- snc.mutation.SetNoReplyCondition(u)
- return snc
- }
- // SetNillableNoReplyCondition sets the "no_reply_condition" field if the given value is not nil.
- func (snc *SopNodeCreate) SetNillableNoReplyCondition(u *uint64) *SopNodeCreate {
- if u != nil {
- snc.SetNoReplyCondition(*u)
- }
- return snc
- }
- // SetActionMessage sets the "action_message" field.
- func (snc *SopNodeCreate) SetActionMessage(ct []custom_types.Action) *SopNodeCreate {
- snc.mutation.SetActionMessage(ct)
- return snc
- }
- // SetActionLabel sets the "action_label" field.
- func (snc *SopNodeCreate) SetActionLabel(u []uint64) *SopNodeCreate {
- snc.mutation.SetActionLabel(u)
- return snc
- }
- // SetID sets the "id" field.
- func (snc *SopNodeCreate) SetID(u uint64) *SopNodeCreate {
- snc.mutation.SetID(u)
- return snc
- }
- // SetSopStageID sets the "sop_stage" edge to the SopStage entity by ID.
- func (snc *SopNodeCreate) SetSopStageID(id uint64) *SopNodeCreate {
- snc.mutation.SetSopStageID(id)
- return snc
- }
- // SetSopStage sets the "sop_stage" edge to the SopStage entity.
- func (snc *SopNodeCreate) SetSopStage(s *SopStage) *SopNodeCreate {
- return snc.SetSopStageID(s.ID)
- }
- // AddNodeMessageIDs adds the "node_messages" edge to the MessageRecords entity by IDs.
- func (snc *SopNodeCreate) AddNodeMessageIDs(ids ...uint64) *SopNodeCreate {
- snc.mutation.AddNodeMessageIDs(ids...)
- return snc
- }
- // AddNodeMessages adds the "node_messages" edges to the MessageRecords entity.
- func (snc *SopNodeCreate) AddNodeMessages(m ...*MessageRecords) *SopNodeCreate {
- ids := make([]uint64, len(m))
- for i := range m {
- ids[i] = m[i].ID
- }
- return snc.AddNodeMessageIDs(ids...)
- }
- // Mutation returns the SopNodeMutation object of the builder.
- func (snc *SopNodeCreate) Mutation() *SopNodeMutation {
- return snc.mutation
- }
- // Save creates the SopNode in the database.
- func (snc *SopNodeCreate) Save(ctx context.Context) (*SopNode, error) {
- if err := snc.defaults(); err != nil {
- return nil, err
- }
- return withHooks(ctx, snc.sqlSave, snc.mutation, snc.hooks)
- }
- // SaveX calls Save and panics if Save returns an error.
- func (snc *SopNodeCreate) SaveX(ctx context.Context) *SopNode {
- v, err := snc.Save(ctx)
- if err != nil {
- panic(err)
- }
- return v
- }
- // Exec executes the query.
- func (snc *SopNodeCreate) Exec(ctx context.Context) error {
- _, err := snc.Save(ctx)
- return err
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (snc *SopNodeCreate) ExecX(ctx context.Context) {
- if err := snc.Exec(ctx); err != nil {
- panic(err)
- }
- }
- // defaults sets the default values of the builder before save.
- func (snc *SopNodeCreate) defaults() error {
- if _, ok := snc.mutation.CreatedAt(); !ok {
- if sopnode.DefaultCreatedAt == nil {
- return fmt.Errorf("ent: uninitialized sopnode.DefaultCreatedAt (forgotten import ent/runtime?)")
- }
- v := sopnode.DefaultCreatedAt()
- snc.mutation.SetCreatedAt(v)
- }
- if _, ok := snc.mutation.UpdatedAt(); !ok {
- if sopnode.DefaultUpdatedAt == nil {
- return fmt.Errorf("ent: uninitialized sopnode.DefaultUpdatedAt (forgotten import ent/runtime?)")
- }
- v := sopnode.DefaultUpdatedAt()
- snc.mutation.SetUpdatedAt(v)
- }
- if _, ok := snc.mutation.Status(); !ok {
- v := sopnode.DefaultStatus
- snc.mutation.SetStatus(v)
- }
- if _, ok := snc.mutation.Name(); !ok {
- v := sopnode.DefaultName
- snc.mutation.SetName(v)
- }
- if _, ok := snc.mutation.ConditionType(); !ok {
- v := sopnode.DefaultConditionType
- snc.mutation.SetConditionType(v)
- }
- if _, ok := snc.mutation.NoReplyCondition(); !ok {
- v := sopnode.DefaultNoReplyCondition
- snc.mutation.SetNoReplyCondition(v)
- }
- return nil
- }
- // check runs all checks and user-defined validators on the builder.
- func (snc *SopNodeCreate) check() error {
- if _, ok := snc.mutation.CreatedAt(); !ok {
- return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "SopNode.created_at"`)}
- }
- if _, ok := snc.mutation.UpdatedAt(); !ok {
- return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "SopNode.updated_at"`)}
- }
- if _, ok := snc.mutation.StageID(); !ok {
- return &ValidationError{Name: "stage_id", err: errors.New(`ent: missing required field "SopNode.stage_id"`)}
- }
- if _, ok := snc.mutation.ParentID(); !ok {
- return &ValidationError{Name: "parent_id", err: errors.New(`ent: missing required field "SopNode.parent_id"`)}
- }
- if _, ok := snc.mutation.Name(); !ok {
- return &ValidationError{Name: "name", err: errors.New(`ent: missing required field "SopNode.name"`)}
- }
- if _, ok := snc.mutation.ConditionType(); !ok {
- return &ValidationError{Name: "condition_type", err: errors.New(`ent: missing required field "SopNode.condition_type"`)}
- }
- if _, ok := snc.mutation.NoReplyCondition(); !ok {
- return &ValidationError{Name: "no_reply_condition", err: errors.New(`ent: missing required field "SopNode.no_reply_condition"`)}
- }
- if _, ok := snc.mutation.SopStageID(); !ok {
- return &ValidationError{Name: "sop_stage", err: errors.New(`ent: missing required edge "SopNode.sop_stage"`)}
- }
- return nil
- }
- func (snc *SopNodeCreate) sqlSave(ctx context.Context) (*SopNode, error) {
- if err := snc.check(); err != nil {
- return nil, err
- }
- _node, _spec := snc.createSpec()
- if err := sqlgraph.CreateNode(ctx, snc.driver, _spec); err != nil {
- if sqlgraph.IsConstraintError(err) {
- err = &ConstraintError{msg: err.Error(), wrap: err}
- }
- return nil, err
- }
- if _spec.ID.Value != _node.ID {
- id := _spec.ID.Value.(int64)
- _node.ID = uint64(id)
- }
- snc.mutation.id = &_node.ID
- snc.mutation.done = true
- return _node, nil
- }
- func (snc *SopNodeCreate) createSpec() (*SopNode, *sqlgraph.CreateSpec) {
- var (
- _node = &SopNode{config: snc.config}
- _spec = sqlgraph.NewCreateSpec(sopnode.Table, sqlgraph.NewFieldSpec(sopnode.FieldID, field.TypeUint64))
- )
- _spec.OnConflict = snc.conflict
- if id, ok := snc.mutation.ID(); ok {
- _node.ID = id
- _spec.ID.Value = id
- }
- if value, ok := snc.mutation.CreatedAt(); ok {
- _spec.SetField(sopnode.FieldCreatedAt, field.TypeTime, value)
- _node.CreatedAt = value
- }
- if value, ok := snc.mutation.UpdatedAt(); ok {
- _spec.SetField(sopnode.FieldUpdatedAt, field.TypeTime, value)
- _node.UpdatedAt = value
- }
- if value, ok := snc.mutation.Status(); ok {
- _spec.SetField(sopnode.FieldStatus, field.TypeUint8, value)
- _node.Status = value
- }
- if value, ok := snc.mutation.DeletedAt(); ok {
- _spec.SetField(sopnode.FieldDeletedAt, field.TypeTime, value)
- _node.DeletedAt = value
- }
- if value, ok := snc.mutation.ParentID(); ok {
- _spec.SetField(sopnode.FieldParentID, field.TypeUint64, value)
- _node.ParentID = value
- }
- if value, ok := snc.mutation.Name(); ok {
- _spec.SetField(sopnode.FieldName, field.TypeString, value)
- _node.Name = value
- }
- if value, ok := snc.mutation.ConditionType(); ok {
- _spec.SetField(sopnode.FieldConditionType, field.TypeInt, value)
- _node.ConditionType = value
- }
- if value, ok := snc.mutation.ConditionList(); ok {
- _spec.SetField(sopnode.FieldConditionList, field.TypeJSON, value)
- _node.ConditionList = value
- }
- if value, ok := snc.mutation.NoReplyCondition(); ok {
- _spec.SetField(sopnode.FieldNoReplyCondition, field.TypeUint64, value)
- _node.NoReplyCondition = value
- }
- if value, ok := snc.mutation.ActionMessage(); ok {
- _spec.SetField(sopnode.FieldActionMessage, field.TypeJSON, value)
- _node.ActionMessage = value
- }
- if value, ok := snc.mutation.ActionLabel(); ok {
- _spec.SetField(sopnode.FieldActionLabel, field.TypeJSON, value)
- _node.ActionLabel = value
- }
- if nodes := snc.mutation.SopStageIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.M2O,
- Inverse: true,
- Table: sopnode.SopStageTable,
- Columns: []string{sopnode.SopStageColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: sqlgraph.NewFieldSpec(sopstage.FieldID, field.TypeUint64),
- },
- }
- for _, k := range nodes {
- edge.Target.Nodes = append(edge.Target.Nodes, k)
- }
- _node.StageID = nodes[0]
- _spec.Edges = append(_spec.Edges, edge)
- }
- if nodes := snc.mutation.NodeMessagesIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.O2M,
- Inverse: false,
- Table: sopnode.NodeMessagesTable,
- Columns: []string{sopnode.NodeMessagesColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: sqlgraph.NewFieldSpec(messagerecords.FieldID, field.TypeUint64),
- },
- }
- for _, k := range nodes {
- edge.Target.Nodes = append(edge.Target.Nodes, k)
- }
- _spec.Edges = append(_spec.Edges, edge)
- }
- return _node, _spec
- }
- // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
- // of the `INSERT` statement. For example:
- //
- // client.SopNode.Create().
- // SetCreatedAt(v).
- // OnConflict(
- // // Update the row with the new values
- // // the was proposed for insertion.
- // sql.ResolveWithNewValues(),
- // ).
- // // Override some of the fields with custom
- // // update values.
- // Update(func(u *ent.SopNodeUpsert) {
- // SetCreatedAt(v+v).
- // }).
- // Exec(ctx)
- func (snc *SopNodeCreate) OnConflict(opts ...sql.ConflictOption) *SopNodeUpsertOne {
- snc.conflict = opts
- return &SopNodeUpsertOne{
- create: snc,
- }
- }
- // OnConflictColumns calls `OnConflict` and configures the columns
- // as conflict target. Using this option is equivalent to using:
- //
- // client.SopNode.Create().
- // OnConflict(sql.ConflictColumns(columns...)).
- // Exec(ctx)
- func (snc *SopNodeCreate) OnConflictColumns(columns ...string) *SopNodeUpsertOne {
- snc.conflict = append(snc.conflict, sql.ConflictColumns(columns...))
- return &SopNodeUpsertOne{
- create: snc,
- }
- }
- type (
- // SopNodeUpsertOne is the builder for "upsert"-ing
- // one SopNode node.
- SopNodeUpsertOne struct {
- create *SopNodeCreate
- }
- // SopNodeUpsert is the "OnConflict" setter.
- SopNodeUpsert struct {
- *sql.UpdateSet
- }
- )
- // SetUpdatedAt sets the "updated_at" field.
- func (u *SopNodeUpsert) SetUpdatedAt(v time.Time) *SopNodeUpsert {
- u.Set(sopnode.FieldUpdatedAt, v)
- return u
- }
- // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
- func (u *SopNodeUpsert) UpdateUpdatedAt() *SopNodeUpsert {
- u.SetExcluded(sopnode.FieldUpdatedAt)
- return u
- }
- // SetStatus sets the "status" field.
- func (u *SopNodeUpsert) SetStatus(v uint8) *SopNodeUpsert {
- u.Set(sopnode.FieldStatus, v)
- return u
- }
- // UpdateStatus sets the "status" field to the value that was provided on create.
- func (u *SopNodeUpsert) UpdateStatus() *SopNodeUpsert {
- u.SetExcluded(sopnode.FieldStatus)
- return u
- }
- // AddStatus adds v to the "status" field.
- func (u *SopNodeUpsert) AddStatus(v uint8) *SopNodeUpsert {
- u.Add(sopnode.FieldStatus, v)
- return u
- }
- // ClearStatus clears the value of the "status" field.
- func (u *SopNodeUpsert) ClearStatus() *SopNodeUpsert {
- u.SetNull(sopnode.FieldStatus)
- return u
- }
- // SetDeletedAt sets the "deleted_at" field.
- func (u *SopNodeUpsert) SetDeletedAt(v time.Time) *SopNodeUpsert {
- u.Set(sopnode.FieldDeletedAt, v)
- return u
- }
- // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
- func (u *SopNodeUpsert) UpdateDeletedAt() *SopNodeUpsert {
- u.SetExcluded(sopnode.FieldDeletedAt)
- return u
- }
- // ClearDeletedAt clears the value of the "deleted_at" field.
- func (u *SopNodeUpsert) ClearDeletedAt() *SopNodeUpsert {
- u.SetNull(sopnode.FieldDeletedAt)
- return u
- }
- // SetStageID sets the "stage_id" field.
- func (u *SopNodeUpsert) SetStageID(v uint64) *SopNodeUpsert {
- u.Set(sopnode.FieldStageID, v)
- return u
- }
- // UpdateStageID sets the "stage_id" field to the value that was provided on create.
- func (u *SopNodeUpsert) UpdateStageID() *SopNodeUpsert {
- u.SetExcluded(sopnode.FieldStageID)
- return u
- }
- // SetParentID sets the "parent_id" field.
- func (u *SopNodeUpsert) SetParentID(v uint64) *SopNodeUpsert {
- u.Set(sopnode.FieldParentID, v)
- return u
- }
- // UpdateParentID sets the "parent_id" field to the value that was provided on create.
- func (u *SopNodeUpsert) UpdateParentID() *SopNodeUpsert {
- u.SetExcluded(sopnode.FieldParentID)
- return u
- }
- // AddParentID adds v to the "parent_id" field.
- func (u *SopNodeUpsert) AddParentID(v uint64) *SopNodeUpsert {
- u.Add(sopnode.FieldParentID, v)
- return u
- }
- // SetName sets the "name" field.
- func (u *SopNodeUpsert) SetName(v string) *SopNodeUpsert {
- u.Set(sopnode.FieldName, v)
- return u
- }
- // UpdateName sets the "name" field to the value that was provided on create.
- func (u *SopNodeUpsert) UpdateName() *SopNodeUpsert {
- u.SetExcluded(sopnode.FieldName)
- return u
- }
- // SetConditionType sets the "condition_type" field.
- func (u *SopNodeUpsert) SetConditionType(v int) *SopNodeUpsert {
- u.Set(sopnode.FieldConditionType, v)
- return u
- }
- // UpdateConditionType sets the "condition_type" field to the value that was provided on create.
- func (u *SopNodeUpsert) UpdateConditionType() *SopNodeUpsert {
- u.SetExcluded(sopnode.FieldConditionType)
- return u
- }
- // AddConditionType adds v to the "condition_type" field.
- func (u *SopNodeUpsert) AddConditionType(v int) *SopNodeUpsert {
- u.Add(sopnode.FieldConditionType, v)
- return u
- }
- // SetConditionList sets the "condition_list" field.
- func (u *SopNodeUpsert) SetConditionList(v []string) *SopNodeUpsert {
- u.Set(sopnode.FieldConditionList, v)
- return u
- }
- // UpdateConditionList sets the "condition_list" field to the value that was provided on create.
- func (u *SopNodeUpsert) UpdateConditionList() *SopNodeUpsert {
- u.SetExcluded(sopnode.FieldConditionList)
- return u
- }
- // ClearConditionList clears the value of the "condition_list" field.
- func (u *SopNodeUpsert) ClearConditionList() *SopNodeUpsert {
- u.SetNull(sopnode.FieldConditionList)
- return u
- }
- // SetNoReplyCondition sets the "no_reply_condition" field.
- func (u *SopNodeUpsert) SetNoReplyCondition(v uint64) *SopNodeUpsert {
- u.Set(sopnode.FieldNoReplyCondition, v)
- return u
- }
- // UpdateNoReplyCondition sets the "no_reply_condition" field to the value that was provided on create.
- func (u *SopNodeUpsert) UpdateNoReplyCondition() *SopNodeUpsert {
- u.SetExcluded(sopnode.FieldNoReplyCondition)
- return u
- }
- // AddNoReplyCondition adds v to the "no_reply_condition" field.
- func (u *SopNodeUpsert) AddNoReplyCondition(v uint64) *SopNodeUpsert {
- u.Add(sopnode.FieldNoReplyCondition, v)
- return u
- }
- // SetActionMessage sets the "action_message" field.
- func (u *SopNodeUpsert) SetActionMessage(v []custom_types.Action) *SopNodeUpsert {
- u.Set(sopnode.FieldActionMessage, v)
- return u
- }
- // UpdateActionMessage sets the "action_message" field to the value that was provided on create.
- func (u *SopNodeUpsert) UpdateActionMessage() *SopNodeUpsert {
- u.SetExcluded(sopnode.FieldActionMessage)
- return u
- }
- // ClearActionMessage clears the value of the "action_message" field.
- func (u *SopNodeUpsert) ClearActionMessage() *SopNodeUpsert {
- u.SetNull(sopnode.FieldActionMessage)
- return u
- }
- // SetActionLabel sets the "action_label" field.
- func (u *SopNodeUpsert) SetActionLabel(v []uint64) *SopNodeUpsert {
- u.Set(sopnode.FieldActionLabel, v)
- return u
- }
- // UpdateActionLabel sets the "action_label" field to the value that was provided on create.
- func (u *SopNodeUpsert) UpdateActionLabel() *SopNodeUpsert {
- u.SetExcluded(sopnode.FieldActionLabel)
- return u
- }
- // ClearActionLabel clears the value of the "action_label" field.
- func (u *SopNodeUpsert) ClearActionLabel() *SopNodeUpsert {
- u.SetNull(sopnode.FieldActionLabel)
- return u
- }
- // UpdateNewValues updates the mutable fields using the new values that were set on create except the ID field.
- // Using this option is equivalent to using:
- //
- // client.SopNode.Create().
- // OnConflict(
- // sql.ResolveWithNewValues(),
- // sql.ResolveWith(func(u *sql.UpdateSet) {
- // u.SetIgnore(sopnode.FieldID)
- // }),
- // ).
- // Exec(ctx)
- func (u *SopNodeUpsertOne) UpdateNewValues() *SopNodeUpsertOne {
- u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
- u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
- if _, exists := u.create.mutation.ID(); exists {
- s.SetIgnore(sopnode.FieldID)
- }
- if _, exists := u.create.mutation.CreatedAt(); exists {
- s.SetIgnore(sopnode.FieldCreatedAt)
- }
- }))
- return u
- }
- // Ignore sets each column to itself in case of conflict.
- // Using this option is equivalent to using:
- //
- // client.SopNode.Create().
- // OnConflict(sql.ResolveWithIgnore()).
- // Exec(ctx)
- func (u *SopNodeUpsertOne) Ignore() *SopNodeUpsertOne {
- u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
- return u
- }
- // DoNothing configures the conflict_action to `DO NOTHING`.
- // Supported only by SQLite and PostgreSQL.
- func (u *SopNodeUpsertOne) DoNothing() *SopNodeUpsertOne {
- u.create.conflict = append(u.create.conflict, sql.DoNothing())
- return u
- }
- // Update allows overriding fields `UPDATE` values. See the SopNodeCreate.OnConflict
- // documentation for more info.
- func (u *SopNodeUpsertOne) Update(set func(*SopNodeUpsert)) *SopNodeUpsertOne {
- u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
- set(&SopNodeUpsert{UpdateSet: update})
- }))
- return u
- }
- // SetUpdatedAt sets the "updated_at" field.
- func (u *SopNodeUpsertOne) SetUpdatedAt(v time.Time) *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetUpdatedAt(v)
- })
- }
- // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
- func (u *SopNodeUpsertOne) UpdateUpdatedAt() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateUpdatedAt()
- })
- }
- // SetStatus sets the "status" field.
- func (u *SopNodeUpsertOne) SetStatus(v uint8) *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetStatus(v)
- })
- }
- // AddStatus adds v to the "status" field.
- func (u *SopNodeUpsertOne) AddStatus(v uint8) *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.AddStatus(v)
- })
- }
- // UpdateStatus sets the "status" field to the value that was provided on create.
- func (u *SopNodeUpsertOne) UpdateStatus() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateStatus()
- })
- }
- // ClearStatus clears the value of the "status" field.
- func (u *SopNodeUpsertOne) ClearStatus() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.ClearStatus()
- })
- }
- // SetDeletedAt sets the "deleted_at" field.
- func (u *SopNodeUpsertOne) SetDeletedAt(v time.Time) *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetDeletedAt(v)
- })
- }
- // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
- func (u *SopNodeUpsertOne) UpdateDeletedAt() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateDeletedAt()
- })
- }
- // ClearDeletedAt clears the value of the "deleted_at" field.
- func (u *SopNodeUpsertOne) ClearDeletedAt() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.ClearDeletedAt()
- })
- }
- // SetStageID sets the "stage_id" field.
- func (u *SopNodeUpsertOne) SetStageID(v uint64) *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetStageID(v)
- })
- }
- // UpdateStageID sets the "stage_id" field to the value that was provided on create.
- func (u *SopNodeUpsertOne) UpdateStageID() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateStageID()
- })
- }
- // SetParentID sets the "parent_id" field.
- func (u *SopNodeUpsertOne) SetParentID(v uint64) *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetParentID(v)
- })
- }
- // AddParentID adds v to the "parent_id" field.
- func (u *SopNodeUpsertOne) AddParentID(v uint64) *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.AddParentID(v)
- })
- }
- // UpdateParentID sets the "parent_id" field to the value that was provided on create.
- func (u *SopNodeUpsertOne) UpdateParentID() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateParentID()
- })
- }
- // SetName sets the "name" field.
- func (u *SopNodeUpsertOne) SetName(v string) *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetName(v)
- })
- }
- // UpdateName sets the "name" field to the value that was provided on create.
- func (u *SopNodeUpsertOne) UpdateName() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateName()
- })
- }
- // SetConditionType sets the "condition_type" field.
- func (u *SopNodeUpsertOne) SetConditionType(v int) *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetConditionType(v)
- })
- }
- // AddConditionType adds v to the "condition_type" field.
- func (u *SopNodeUpsertOne) AddConditionType(v int) *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.AddConditionType(v)
- })
- }
- // UpdateConditionType sets the "condition_type" field to the value that was provided on create.
- func (u *SopNodeUpsertOne) UpdateConditionType() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateConditionType()
- })
- }
- // SetConditionList sets the "condition_list" field.
- func (u *SopNodeUpsertOne) SetConditionList(v []string) *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetConditionList(v)
- })
- }
- // UpdateConditionList sets the "condition_list" field to the value that was provided on create.
- func (u *SopNodeUpsertOne) UpdateConditionList() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateConditionList()
- })
- }
- // ClearConditionList clears the value of the "condition_list" field.
- func (u *SopNodeUpsertOne) ClearConditionList() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.ClearConditionList()
- })
- }
- // SetNoReplyCondition sets the "no_reply_condition" field.
- func (u *SopNodeUpsertOne) SetNoReplyCondition(v uint64) *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetNoReplyCondition(v)
- })
- }
- // AddNoReplyCondition adds v to the "no_reply_condition" field.
- func (u *SopNodeUpsertOne) AddNoReplyCondition(v uint64) *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.AddNoReplyCondition(v)
- })
- }
- // UpdateNoReplyCondition sets the "no_reply_condition" field to the value that was provided on create.
- func (u *SopNodeUpsertOne) UpdateNoReplyCondition() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateNoReplyCondition()
- })
- }
- // SetActionMessage sets the "action_message" field.
- func (u *SopNodeUpsertOne) SetActionMessage(v []custom_types.Action) *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetActionMessage(v)
- })
- }
- // UpdateActionMessage sets the "action_message" field to the value that was provided on create.
- func (u *SopNodeUpsertOne) UpdateActionMessage() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateActionMessage()
- })
- }
- // ClearActionMessage clears the value of the "action_message" field.
- func (u *SopNodeUpsertOne) ClearActionMessage() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.ClearActionMessage()
- })
- }
- // SetActionLabel sets the "action_label" field.
- func (u *SopNodeUpsertOne) SetActionLabel(v []uint64) *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetActionLabel(v)
- })
- }
- // UpdateActionLabel sets the "action_label" field to the value that was provided on create.
- func (u *SopNodeUpsertOne) UpdateActionLabel() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateActionLabel()
- })
- }
- // ClearActionLabel clears the value of the "action_label" field.
- func (u *SopNodeUpsertOne) ClearActionLabel() *SopNodeUpsertOne {
- return u.Update(func(s *SopNodeUpsert) {
- s.ClearActionLabel()
- })
- }
- // Exec executes the query.
- func (u *SopNodeUpsertOne) Exec(ctx context.Context) error {
- if len(u.create.conflict) == 0 {
- return errors.New("ent: missing options for SopNodeCreate.OnConflict")
- }
- return u.create.Exec(ctx)
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (u *SopNodeUpsertOne) ExecX(ctx context.Context) {
- if err := u.create.Exec(ctx); err != nil {
- panic(err)
- }
- }
- // Exec executes the UPSERT query and returns the inserted/updated ID.
- func (u *SopNodeUpsertOne) ID(ctx context.Context) (id uint64, err error) {
- node, err := u.create.Save(ctx)
- if err != nil {
- return id, err
- }
- return node.ID, nil
- }
- // IDX is like ID, but panics if an error occurs.
- func (u *SopNodeUpsertOne) IDX(ctx context.Context) uint64 {
- id, err := u.ID(ctx)
- if err != nil {
- panic(err)
- }
- return id
- }
- // SopNodeCreateBulk is the builder for creating many SopNode entities in bulk.
- type SopNodeCreateBulk struct {
- config
- err error
- builders []*SopNodeCreate
- conflict []sql.ConflictOption
- }
- // Save creates the SopNode entities in the database.
- func (sncb *SopNodeCreateBulk) Save(ctx context.Context) ([]*SopNode, error) {
- if sncb.err != nil {
- return nil, sncb.err
- }
- specs := make([]*sqlgraph.CreateSpec, len(sncb.builders))
- nodes := make([]*SopNode, len(sncb.builders))
- mutators := make([]Mutator, len(sncb.builders))
- for i := range sncb.builders {
- func(i int, root context.Context) {
- builder := sncb.builders[i]
- builder.defaults()
- var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
- mutation, ok := m.(*SopNodeMutation)
- if !ok {
- return nil, fmt.Errorf("unexpected mutation type %T", m)
- }
- if err := builder.check(); err != nil {
- return nil, err
- }
- builder.mutation = mutation
- var err error
- nodes[i], specs[i] = builder.createSpec()
- if i < len(mutators)-1 {
- _, err = mutators[i+1].Mutate(root, sncb.builders[i+1].mutation)
- } else {
- spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
- spec.OnConflict = sncb.conflict
- // Invoke the actual operation on the latest mutation in the chain.
- if err = sqlgraph.BatchCreate(ctx, sncb.driver, spec); err != nil {
- if sqlgraph.IsConstraintError(err) {
- err = &ConstraintError{msg: err.Error(), wrap: err}
- }
- }
- }
- if err != nil {
- return nil, err
- }
- mutation.id = &nodes[i].ID
- if specs[i].ID.Value != nil && nodes[i].ID == 0 {
- id := specs[i].ID.Value.(int64)
- nodes[i].ID = uint64(id)
- }
- mutation.done = true
- return nodes[i], nil
- })
- for i := len(builder.hooks) - 1; i >= 0; i-- {
- mut = builder.hooks[i](mut)
- }
- mutators[i] = mut
- }(i, ctx)
- }
- if len(mutators) > 0 {
- if _, err := mutators[0].Mutate(ctx, sncb.builders[0].mutation); err != nil {
- return nil, err
- }
- }
- return nodes, nil
- }
- // SaveX is like Save, but panics if an error occurs.
- func (sncb *SopNodeCreateBulk) SaveX(ctx context.Context) []*SopNode {
- v, err := sncb.Save(ctx)
- if err != nil {
- panic(err)
- }
- return v
- }
- // Exec executes the query.
- func (sncb *SopNodeCreateBulk) Exec(ctx context.Context) error {
- _, err := sncb.Save(ctx)
- return err
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (sncb *SopNodeCreateBulk) ExecX(ctx context.Context) {
- if err := sncb.Exec(ctx); err != nil {
- panic(err)
- }
- }
- // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
- // of the `INSERT` statement. For example:
- //
- // client.SopNode.CreateBulk(builders...).
- // OnConflict(
- // // Update the row with the new values
- // // the was proposed for insertion.
- // sql.ResolveWithNewValues(),
- // ).
- // // Override some of the fields with custom
- // // update values.
- // Update(func(u *ent.SopNodeUpsert) {
- // SetCreatedAt(v+v).
- // }).
- // Exec(ctx)
- func (sncb *SopNodeCreateBulk) OnConflict(opts ...sql.ConflictOption) *SopNodeUpsertBulk {
- sncb.conflict = opts
- return &SopNodeUpsertBulk{
- create: sncb,
- }
- }
- // OnConflictColumns calls `OnConflict` and configures the columns
- // as conflict target. Using this option is equivalent to using:
- //
- // client.SopNode.Create().
- // OnConflict(sql.ConflictColumns(columns...)).
- // Exec(ctx)
- func (sncb *SopNodeCreateBulk) OnConflictColumns(columns ...string) *SopNodeUpsertBulk {
- sncb.conflict = append(sncb.conflict, sql.ConflictColumns(columns...))
- return &SopNodeUpsertBulk{
- create: sncb,
- }
- }
- // SopNodeUpsertBulk is the builder for "upsert"-ing
- // a bulk of SopNode nodes.
- type SopNodeUpsertBulk struct {
- create *SopNodeCreateBulk
- }
- // UpdateNewValues updates the mutable fields using the new values that
- // were set on create. Using this option is equivalent to using:
- //
- // client.SopNode.Create().
- // OnConflict(
- // sql.ResolveWithNewValues(),
- // sql.ResolveWith(func(u *sql.UpdateSet) {
- // u.SetIgnore(sopnode.FieldID)
- // }),
- // ).
- // Exec(ctx)
- func (u *SopNodeUpsertBulk) UpdateNewValues() *SopNodeUpsertBulk {
- u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
- u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
- for _, b := range u.create.builders {
- if _, exists := b.mutation.ID(); exists {
- s.SetIgnore(sopnode.FieldID)
- }
- if _, exists := b.mutation.CreatedAt(); exists {
- s.SetIgnore(sopnode.FieldCreatedAt)
- }
- }
- }))
- return u
- }
- // Ignore sets each column to itself in case of conflict.
- // Using this option is equivalent to using:
- //
- // client.SopNode.Create().
- // OnConflict(sql.ResolveWithIgnore()).
- // Exec(ctx)
- func (u *SopNodeUpsertBulk) Ignore() *SopNodeUpsertBulk {
- u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
- return u
- }
- // DoNothing configures the conflict_action to `DO NOTHING`.
- // Supported only by SQLite and PostgreSQL.
- func (u *SopNodeUpsertBulk) DoNothing() *SopNodeUpsertBulk {
- u.create.conflict = append(u.create.conflict, sql.DoNothing())
- return u
- }
- // Update allows overriding fields `UPDATE` values. See the SopNodeCreateBulk.OnConflict
- // documentation for more info.
- func (u *SopNodeUpsertBulk) Update(set func(*SopNodeUpsert)) *SopNodeUpsertBulk {
- u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
- set(&SopNodeUpsert{UpdateSet: update})
- }))
- return u
- }
- // SetUpdatedAt sets the "updated_at" field.
- func (u *SopNodeUpsertBulk) SetUpdatedAt(v time.Time) *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetUpdatedAt(v)
- })
- }
- // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
- func (u *SopNodeUpsertBulk) UpdateUpdatedAt() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateUpdatedAt()
- })
- }
- // SetStatus sets the "status" field.
- func (u *SopNodeUpsertBulk) SetStatus(v uint8) *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetStatus(v)
- })
- }
- // AddStatus adds v to the "status" field.
- func (u *SopNodeUpsertBulk) AddStatus(v uint8) *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.AddStatus(v)
- })
- }
- // UpdateStatus sets the "status" field to the value that was provided on create.
- func (u *SopNodeUpsertBulk) UpdateStatus() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateStatus()
- })
- }
- // ClearStatus clears the value of the "status" field.
- func (u *SopNodeUpsertBulk) ClearStatus() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.ClearStatus()
- })
- }
- // SetDeletedAt sets the "deleted_at" field.
- func (u *SopNodeUpsertBulk) SetDeletedAt(v time.Time) *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetDeletedAt(v)
- })
- }
- // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
- func (u *SopNodeUpsertBulk) UpdateDeletedAt() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateDeletedAt()
- })
- }
- // ClearDeletedAt clears the value of the "deleted_at" field.
- func (u *SopNodeUpsertBulk) ClearDeletedAt() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.ClearDeletedAt()
- })
- }
- // SetStageID sets the "stage_id" field.
- func (u *SopNodeUpsertBulk) SetStageID(v uint64) *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetStageID(v)
- })
- }
- // UpdateStageID sets the "stage_id" field to the value that was provided on create.
- func (u *SopNodeUpsertBulk) UpdateStageID() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateStageID()
- })
- }
- // SetParentID sets the "parent_id" field.
- func (u *SopNodeUpsertBulk) SetParentID(v uint64) *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetParentID(v)
- })
- }
- // AddParentID adds v to the "parent_id" field.
- func (u *SopNodeUpsertBulk) AddParentID(v uint64) *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.AddParentID(v)
- })
- }
- // UpdateParentID sets the "parent_id" field to the value that was provided on create.
- func (u *SopNodeUpsertBulk) UpdateParentID() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateParentID()
- })
- }
- // SetName sets the "name" field.
- func (u *SopNodeUpsertBulk) SetName(v string) *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetName(v)
- })
- }
- // UpdateName sets the "name" field to the value that was provided on create.
- func (u *SopNodeUpsertBulk) UpdateName() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateName()
- })
- }
- // SetConditionType sets the "condition_type" field.
- func (u *SopNodeUpsertBulk) SetConditionType(v int) *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetConditionType(v)
- })
- }
- // AddConditionType adds v to the "condition_type" field.
- func (u *SopNodeUpsertBulk) AddConditionType(v int) *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.AddConditionType(v)
- })
- }
- // UpdateConditionType sets the "condition_type" field to the value that was provided on create.
- func (u *SopNodeUpsertBulk) UpdateConditionType() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateConditionType()
- })
- }
- // SetConditionList sets the "condition_list" field.
- func (u *SopNodeUpsertBulk) SetConditionList(v []string) *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetConditionList(v)
- })
- }
- // UpdateConditionList sets the "condition_list" field to the value that was provided on create.
- func (u *SopNodeUpsertBulk) UpdateConditionList() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateConditionList()
- })
- }
- // ClearConditionList clears the value of the "condition_list" field.
- func (u *SopNodeUpsertBulk) ClearConditionList() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.ClearConditionList()
- })
- }
- // SetNoReplyCondition sets the "no_reply_condition" field.
- func (u *SopNodeUpsertBulk) SetNoReplyCondition(v uint64) *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetNoReplyCondition(v)
- })
- }
- // AddNoReplyCondition adds v to the "no_reply_condition" field.
- func (u *SopNodeUpsertBulk) AddNoReplyCondition(v uint64) *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.AddNoReplyCondition(v)
- })
- }
- // UpdateNoReplyCondition sets the "no_reply_condition" field to the value that was provided on create.
- func (u *SopNodeUpsertBulk) UpdateNoReplyCondition() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateNoReplyCondition()
- })
- }
- // SetActionMessage sets the "action_message" field.
- func (u *SopNodeUpsertBulk) SetActionMessage(v []custom_types.Action) *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetActionMessage(v)
- })
- }
- // UpdateActionMessage sets the "action_message" field to the value that was provided on create.
- func (u *SopNodeUpsertBulk) UpdateActionMessage() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateActionMessage()
- })
- }
- // ClearActionMessage clears the value of the "action_message" field.
- func (u *SopNodeUpsertBulk) ClearActionMessage() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.ClearActionMessage()
- })
- }
- // SetActionLabel sets the "action_label" field.
- func (u *SopNodeUpsertBulk) SetActionLabel(v []uint64) *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.SetActionLabel(v)
- })
- }
- // UpdateActionLabel sets the "action_label" field to the value that was provided on create.
- func (u *SopNodeUpsertBulk) UpdateActionLabel() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.UpdateActionLabel()
- })
- }
- // ClearActionLabel clears the value of the "action_label" field.
- func (u *SopNodeUpsertBulk) ClearActionLabel() *SopNodeUpsertBulk {
- return u.Update(func(s *SopNodeUpsert) {
- s.ClearActionLabel()
- })
- }
- // Exec executes the query.
- func (u *SopNodeUpsertBulk) Exec(ctx context.Context) error {
- if u.create.err != nil {
- return u.create.err
- }
- for i, b := range u.create.builders {
- if len(b.conflict) != 0 {
- return fmt.Errorf("ent: OnConflict was set for builder %d. Set it on the SopNodeCreateBulk instead", i)
- }
- }
- if len(u.create.conflict) == 0 {
- return errors.New("ent: missing options for SopNodeCreateBulk.OnConflict")
- }
- return u.create.Exec(ctx)
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (u *SopNodeUpsertBulk) ExecX(ctx context.Context) {
- if err := u.create.Exec(ctx); err != nil {
- panic(err)
- }
- }
|