123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011 |
- // Code generated by ent, DO NOT EDIT.
- package ent
- import (
- "context"
- "errors"
- "fmt"
- "time"
- "wechat-api/ent/contact"
- "wechat-api/ent/label"
- "wechat-api/ent/labelrelationship"
- "entgo.io/ent/dialect/sql"
- "entgo.io/ent/dialect/sql/sqlgraph"
- "entgo.io/ent/schema/field"
- )
- // LabelRelationshipCreate is the builder for creating a LabelRelationship entity.
- type LabelRelationshipCreate struct {
- config
- mutation *LabelRelationshipMutation
- hooks []Hook
- conflict []sql.ConflictOption
- }
- // SetCreatedAt sets the "created_at" field.
- func (lrc *LabelRelationshipCreate) SetCreatedAt(t time.Time) *LabelRelationshipCreate {
- lrc.mutation.SetCreatedAt(t)
- return lrc
- }
- // SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
- func (lrc *LabelRelationshipCreate) SetNillableCreatedAt(t *time.Time) *LabelRelationshipCreate {
- if t != nil {
- lrc.SetCreatedAt(*t)
- }
- return lrc
- }
- // SetUpdatedAt sets the "updated_at" field.
- func (lrc *LabelRelationshipCreate) SetUpdatedAt(t time.Time) *LabelRelationshipCreate {
- lrc.mutation.SetUpdatedAt(t)
- return lrc
- }
- // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
- func (lrc *LabelRelationshipCreate) SetNillableUpdatedAt(t *time.Time) *LabelRelationshipCreate {
- if t != nil {
- lrc.SetUpdatedAt(*t)
- }
- return lrc
- }
- // SetStatus sets the "status" field.
- func (lrc *LabelRelationshipCreate) SetStatus(u uint8) *LabelRelationshipCreate {
- lrc.mutation.SetStatus(u)
- return lrc
- }
- // SetNillableStatus sets the "status" field if the given value is not nil.
- func (lrc *LabelRelationshipCreate) SetNillableStatus(u *uint8) *LabelRelationshipCreate {
- if u != nil {
- lrc.SetStatus(*u)
- }
- return lrc
- }
- // SetDeletedAt sets the "deleted_at" field.
- func (lrc *LabelRelationshipCreate) SetDeletedAt(t time.Time) *LabelRelationshipCreate {
- lrc.mutation.SetDeletedAt(t)
- return lrc
- }
- // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
- func (lrc *LabelRelationshipCreate) SetNillableDeletedAt(t *time.Time) *LabelRelationshipCreate {
- if t != nil {
- lrc.SetDeletedAt(*t)
- }
- return lrc
- }
- // SetLabelID sets the "label_id" field.
- func (lrc *LabelRelationshipCreate) SetLabelID(u uint64) *LabelRelationshipCreate {
- lrc.mutation.SetLabelID(u)
- return lrc
- }
- // SetNillableLabelID sets the "label_id" field if the given value is not nil.
- func (lrc *LabelRelationshipCreate) SetNillableLabelID(u *uint64) *LabelRelationshipCreate {
- if u != nil {
- lrc.SetLabelID(*u)
- }
- return lrc
- }
- // SetContactID sets the "contact_id" field.
- func (lrc *LabelRelationshipCreate) SetContactID(u uint64) *LabelRelationshipCreate {
- lrc.mutation.SetContactID(u)
- return lrc
- }
- // SetNillableContactID sets the "contact_id" field if the given value is not nil.
- func (lrc *LabelRelationshipCreate) SetNillableContactID(u *uint64) *LabelRelationshipCreate {
- if u != nil {
- lrc.SetContactID(*u)
- }
- return lrc
- }
- // SetOrganizationID sets the "organization_id" field.
- func (lrc *LabelRelationshipCreate) SetOrganizationID(u uint64) *LabelRelationshipCreate {
- lrc.mutation.SetOrganizationID(u)
- return lrc
- }
- // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
- func (lrc *LabelRelationshipCreate) SetNillableOrganizationID(u *uint64) *LabelRelationshipCreate {
- if u != nil {
- lrc.SetOrganizationID(*u)
- }
- return lrc
- }
- // SetID sets the "id" field.
- func (lrc *LabelRelationshipCreate) SetID(u uint64) *LabelRelationshipCreate {
- lrc.mutation.SetID(u)
- return lrc
- }
- // SetContactsID sets the "contacts" edge to the Contact entity by ID.
- func (lrc *LabelRelationshipCreate) SetContactsID(id uint64) *LabelRelationshipCreate {
- lrc.mutation.SetContactsID(id)
- return lrc
- }
- // SetContacts sets the "contacts" edge to the Contact entity.
- func (lrc *LabelRelationshipCreate) SetContacts(c *Contact) *LabelRelationshipCreate {
- return lrc.SetContactsID(c.ID)
- }
- // SetLabelsID sets the "labels" edge to the Label entity by ID.
- func (lrc *LabelRelationshipCreate) SetLabelsID(id uint64) *LabelRelationshipCreate {
- lrc.mutation.SetLabelsID(id)
- return lrc
- }
- // SetLabels sets the "labels" edge to the Label entity.
- func (lrc *LabelRelationshipCreate) SetLabels(l *Label) *LabelRelationshipCreate {
- return lrc.SetLabelsID(l.ID)
- }
- // Mutation returns the LabelRelationshipMutation object of the builder.
- func (lrc *LabelRelationshipCreate) Mutation() *LabelRelationshipMutation {
- return lrc.mutation
- }
- // Save creates the LabelRelationship in the database.
- func (lrc *LabelRelationshipCreate) Save(ctx context.Context) (*LabelRelationship, error) {
- if err := lrc.defaults(); err != nil {
- return nil, err
- }
- return withHooks(ctx, lrc.sqlSave, lrc.mutation, lrc.hooks)
- }
- // SaveX calls Save and panics if Save returns an error.
- func (lrc *LabelRelationshipCreate) SaveX(ctx context.Context) *LabelRelationship {
- v, err := lrc.Save(ctx)
- if err != nil {
- panic(err)
- }
- return v
- }
- // Exec executes the query.
- func (lrc *LabelRelationshipCreate) Exec(ctx context.Context) error {
- _, err := lrc.Save(ctx)
- return err
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (lrc *LabelRelationshipCreate) ExecX(ctx context.Context) {
- if err := lrc.Exec(ctx); err != nil {
- panic(err)
- }
- }
- // defaults sets the default values of the builder before save.
- func (lrc *LabelRelationshipCreate) defaults() error {
- if _, ok := lrc.mutation.CreatedAt(); !ok {
- if labelrelationship.DefaultCreatedAt == nil {
- return fmt.Errorf("ent: uninitialized labelrelationship.DefaultCreatedAt (forgotten import ent/runtime?)")
- }
- v := labelrelationship.DefaultCreatedAt()
- lrc.mutation.SetCreatedAt(v)
- }
- if _, ok := lrc.mutation.UpdatedAt(); !ok {
- if labelrelationship.DefaultUpdatedAt == nil {
- return fmt.Errorf("ent: uninitialized labelrelationship.DefaultUpdatedAt (forgotten import ent/runtime?)")
- }
- v := labelrelationship.DefaultUpdatedAt()
- lrc.mutation.SetUpdatedAt(v)
- }
- if _, ok := lrc.mutation.Status(); !ok {
- v := labelrelationship.DefaultStatus
- lrc.mutation.SetStatus(v)
- }
- if _, ok := lrc.mutation.LabelID(); !ok {
- v := labelrelationship.DefaultLabelID
- lrc.mutation.SetLabelID(v)
- }
- if _, ok := lrc.mutation.ContactID(); !ok {
- v := labelrelationship.DefaultContactID
- lrc.mutation.SetContactID(v)
- }
- if _, ok := lrc.mutation.OrganizationID(); !ok {
- v := labelrelationship.DefaultOrganizationID
- lrc.mutation.SetOrganizationID(v)
- }
- return nil
- }
- // check runs all checks and user-defined validators on the builder.
- func (lrc *LabelRelationshipCreate) check() error {
- if _, ok := lrc.mutation.CreatedAt(); !ok {
- return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "LabelRelationship.created_at"`)}
- }
- if _, ok := lrc.mutation.UpdatedAt(); !ok {
- return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "LabelRelationship.updated_at"`)}
- }
- if _, ok := lrc.mutation.LabelID(); !ok {
- return &ValidationError{Name: "label_id", err: errors.New(`ent: missing required field "LabelRelationship.label_id"`)}
- }
- if _, ok := lrc.mutation.ContactID(); !ok {
- return &ValidationError{Name: "contact_id", err: errors.New(`ent: missing required field "LabelRelationship.contact_id"`)}
- }
- if _, ok := lrc.mutation.ContactsID(); !ok {
- return &ValidationError{Name: "contacts", err: errors.New(`ent: missing required edge "LabelRelationship.contacts"`)}
- }
- if _, ok := lrc.mutation.LabelsID(); !ok {
- return &ValidationError{Name: "labels", err: errors.New(`ent: missing required edge "LabelRelationship.labels"`)}
- }
- return nil
- }
- func (lrc *LabelRelationshipCreate) sqlSave(ctx context.Context) (*LabelRelationship, error) {
- if err := lrc.check(); err != nil {
- return nil, err
- }
- _node, _spec := lrc.createSpec()
- if err := sqlgraph.CreateNode(ctx, lrc.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)
- }
- lrc.mutation.id = &_node.ID
- lrc.mutation.done = true
- return _node, nil
- }
- func (lrc *LabelRelationshipCreate) createSpec() (*LabelRelationship, *sqlgraph.CreateSpec) {
- var (
- _node = &LabelRelationship{config: lrc.config}
- _spec = sqlgraph.NewCreateSpec(labelrelationship.Table, sqlgraph.NewFieldSpec(labelrelationship.FieldID, field.TypeUint64))
- )
- _spec.OnConflict = lrc.conflict
- if id, ok := lrc.mutation.ID(); ok {
- _node.ID = id
- _spec.ID.Value = id
- }
- if value, ok := lrc.mutation.CreatedAt(); ok {
- _spec.SetField(labelrelationship.FieldCreatedAt, field.TypeTime, value)
- _node.CreatedAt = value
- }
- if value, ok := lrc.mutation.UpdatedAt(); ok {
- _spec.SetField(labelrelationship.FieldUpdatedAt, field.TypeTime, value)
- _node.UpdatedAt = value
- }
- if value, ok := lrc.mutation.Status(); ok {
- _spec.SetField(labelrelationship.FieldStatus, field.TypeUint8, value)
- _node.Status = value
- }
- if value, ok := lrc.mutation.DeletedAt(); ok {
- _spec.SetField(labelrelationship.FieldDeletedAt, field.TypeTime, value)
- _node.DeletedAt = value
- }
- if value, ok := lrc.mutation.OrganizationID(); ok {
- _spec.SetField(labelrelationship.FieldOrganizationID, field.TypeUint64, value)
- _node.OrganizationID = value
- }
- if nodes := lrc.mutation.ContactsIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.M2O,
- Inverse: true,
- Table: labelrelationship.ContactsTable,
- Columns: []string{labelrelationship.ContactsColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: sqlgraph.NewFieldSpec(contact.FieldID, field.TypeUint64),
- },
- }
- for _, k := range nodes {
- edge.Target.Nodes = append(edge.Target.Nodes, k)
- }
- _node.ContactID = nodes[0]
- _spec.Edges = append(_spec.Edges, edge)
- }
- if nodes := lrc.mutation.LabelsIDs(); len(nodes) > 0 {
- edge := &sqlgraph.EdgeSpec{
- Rel: sqlgraph.M2O,
- Inverse: true,
- Table: labelrelationship.LabelsTable,
- Columns: []string{labelrelationship.LabelsColumn},
- Bidi: false,
- Target: &sqlgraph.EdgeTarget{
- IDSpec: sqlgraph.NewFieldSpec(label.FieldID, field.TypeUint64),
- },
- }
- for _, k := range nodes {
- edge.Target.Nodes = append(edge.Target.Nodes, k)
- }
- _node.LabelID = nodes[0]
- _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.LabelRelationship.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.LabelRelationshipUpsert) {
- // SetCreatedAt(v+v).
- // }).
- // Exec(ctx)
- func (lrc *LabelRelationshipCreate) OnConflict(opts ...sql.ConflictOption) *LabelRelationshipUpsertOne {
- lrc.conflict = opts
- return &LabelRelationshipUpsertOne{
- create: lrc,
- }
- }
- // OnConflictColumns calls `OnConflict` and configures the columns
- // as conflict target. Using this option is equivalent to using:
- //
- // client.LabelRelationship.Create().
- // OnConflict(sql.ConflictColumns(columns...)).
- // Exec(ctx)
- func (lrc *LabelRelationshipCreate) OnConflictColumns(columns ...string) *LabelRelationshipUpsertOne {
- lrc.conflict = append(lrc.conflict, sql.ConflictColumns(columns...))
- return &LabelRelationshipUpsertOne{
- create: lrc,
- }
- }
- type (
- // LabelRelationshipUpsertOne is the builder for "upsert"-ing
- // one LabelRelationship node.
- LabelRelationshipUpsertOne struct {
- create *LabelRelationshipCreate
- }
- // LabelRelationshipUpsert is the "OnConflict" setter.
- LabelRelationshipUpsert struct {
- *sql.UpdateSet
- }
- )
- // SetUpdatedAt sets the "updated_at" field.
- func (u *LabelRelationshipUpsert) SetUpdatedAt(v time.Time) *LabelRelationshipUpsert {
- u.Set(labelrelationship.FieldUpdatedAt, v)
- return u
- }
- // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
- func (u *LabelRelationshipUpsert) UpdateUpdatedAt() *LabelRelationshipUpsert {
- u.SetExcluded(labelrelationship.FieldUpdatedAt)
- return u
- }
- // SetStatus sets the "status" field.
- func (u *LabelRelationshipUpsert) SetStatus(v uint8) *LabelRelationshipUpsert {
- u.Set(labelrelationship.FieldStatus, v)
- return u
- }
- // UpdateStatus sets the "status" field to the value that was provided on create.
- func (u *LabelRelationshipUpsert) UpdateStatus() *LabelRelationshipUpsert {
- u.SetExcluded(labelrelationship.FieldStatus)
- return u
- }
- // AddStatus adds v to the "status" field.
- func (u *LabelRelationshipUpsert) AddStatus(v uint8) *LabelRelationshipUpsert {
- u.Add(labelrelationship.FieldStatus, v)
- return u
- }
- // ClearStatus clears the value of the "status" field.
- func (u *LabelRelationshipUpsert) ClearStatus() *LabelRelationshipUpsert {
- u.SetNull(labelrelationship.FieldStatus)
- return u
- }
- // SetDeletedAt sets the "deleted_at" field.
- func (u *LabelRelationshipUpsert) SetDeletedAt(v time.Time) *LabelRelationshipUpsert {
- u.Set(labelrelationship.FieldDeletedAt, v)
- return u
- }
- // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
- func (u *LabelRelationshipUpsert) UpdateDeletedAt() *LabelRelationshipUpsert {
- u.SetExcluded(labelrelationship.FieldDeletedAt)
- return u
- }
- // ClearDeletedAt clears the value of the "deleted_at" field.
- func (u *LabelRelationshipUpsert) ClearDeletedAt() *LabelRelationshipUpsert {
- u.SetNull(labelrelationship.FieldDeletedAt)
- return u
- }
- // SetLabelID sets the "label_id" field.
- func (u *LabelRelationshipUpsert) SetLabelID(v uint64) *LabelRelationshipUpsert {
- u.Set(labelrelationship.FieldLabelID, v)
- return u
- }
- // UpdateLabelID sets the "label_id" field to the value that was provided on create.
- func (u *LabelRelationshipUpsert) UpdateLabelID() *LabelRelationshipUpsert {
- u.SetExcluded(labelrelationship.FieldLabelID)
- return u
- }
- // SetContactID sets the "contact_id" field.
- func (u *LabelRelationshipUpsert) SetContactID(v uint64) *LabelRelationshipUpsert {
- u.Set(labelrelationship.FieldContactID, v)
- return u
- }
- // UpdateContactID sets the "contact_id" field to the value that was provided on create.
- func (u *LabelRelationshipUpsert) UpdateContactID() *LabelRelationshipUpsert {
- u.SetExcluded(labelrelationship.FieldContactID)
- return u
- }
- // SetOrganizationID sets the "organization_id" field.
- func (u *LabelRelationshipUpsert) SetOrganizationID(v uint64) *LabelRelationshipUpsert {
- u.Set(labelrelationship.FieldOrganizationID, v)
- return u
- }
- // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
- func (u *LabelRelationshipUpsert) UpdateOrganizationID() *LabelRelationshipUpsert {
- u.SetExcluded(labelrelationship.FieldOrganizationID)
- return u
- }
- // AddOrganizationID adds v to the "organization_id" field.
- func (u *LabelRelationshipUpsert) AddOrganizationID(v uint64) *LabelRelationshipUpsert {
- u.Add(labelrelationship.FieldOrganizationID, v)
- return u
- }
- // ClearOrganizationID clears the value of the "organization_id" field.
- func (u *LabelRelationshipUpsert) ClearOrganizationID() *LabelRelationshipUpsert {
- u.SetNull(labelrelationship.FieldOrganizationID)
- 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.LabelRelationship.Create().
- // OnConflict(
- // sql.ResolveWithNewValues(),
- // sql.ResolveWith(func(u *sql.UpdateSet) {
- // u.SetIgnore(labelrelationship.FieldID)
- // }),
- // ).
- // Exec(ctx)
- func (u *LabelRelationshipUpsertOne) UpdateNewValues() *LabelRelationshipUpsertOne {
- 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(labelrelationship.FieldID)
- }
- if _, exists := u.create.mutation.CreatedAt(); exists {
- s.SetIgnore(labelrelationship.FieldCreatedAt)
- }
- }))
- return u
- }
- // Ignore sets each column to itself in case of conflict.
- // Using this option is equivalent to using:
- //
- // client.LabelRelationship.Create().
- // OnConflict(sql.ResolveWithIgnore()).
- // Exec(ctx)
- func (u *LabelRelationshipUpsertOne) Ignore() *LabelRelationshipUpsertOne {
- 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 *LabelRelationshipUpsertOne) DoNothing() *LabelRelationshipUpsertOne {
- u.create.conflict = append(u.create.conflict, sql.DoNothing())
- return u
- }
- // Update allows overriding fields `UPDATE` values. See the LabelRelationshipCreate.OnConflict
- // documentation for more info.
- func (u *LabelRelationshipUpsertOne) Update(set func(*LabelRelationshipUpsert)) *LabelRelationshipUpsertOne {
- u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
- set(&LabelRelationshipUpsert{UpdateSet: update})
- }))
- return u
- }
- // SetUpdatedAt sets the "updated_at" field.
- func (u *LabelRelationshipUpsertOne) SetUpdatedAt(v time.Time) *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.SetUpdatedAt(v)
- })
- }
- // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
- func (u *LabelRelationshipUpsertOne) UpdateUpdatedAt() *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.UpdateUpdatedAt()
- })
- }
- // SetStatus sets the "status" field.
- func (u *LabelRelationshipUpsertOne) SetStatus(v uint8) *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.SetStatus(v)
- })
- }
- // AddStatus adds v to the "status" field.
- func (u *LabelRelationshipUpsertOne) AddStatus(v uint8) *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.AddStatus(v)
- })
- }
- // UpdateStatus sets the "status" field to the value that was provided on create.
- func (u *LabelRelationshipUpsertOne) UpdateStatus() *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.UpdateStatus()
- })
- }
- // ClearStatus clears the value of the "status" field.
- func (u *LabelRelationshipUpsertOne) ClearStatus() *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.ClearStatus()
- })
- }
- // SetDeletedAt sets the "deleted_at" field.
- func (u *LabelRelationshipUpsertOne) SetDeletedAt(v time.Time) *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.SetDeletedAt(v)
- })
- }
- // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
- func (u *LabelRelationshipUpsertOne) UpdateDeletedAt() *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.UpdateDeletedAt()
- })
- }
- // ClearDeletedAt clears the value of the "deleted_at" field.
- func (u *LabelRelationshipUpsertOne) ClearDeletedAt() *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.ClearDeletedAt()
- })
- }
- // SetLabelID sets the "label_id" field.
- func (u *LabelRelationshipUpsertOne) SetLabelID(v uint64) *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.SetLabelID(v)
- })
- }
- // UpdateLabelID sets the "label_id" field to the value that was provided on create.
- func (u *LabelRelationshipUpsertOne) UpdateLabelID() *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.UpdateLabelID()
- })
- }
- // SetContactID sets the "contact_id" field.
- func (u *LabelRelationshipUpsertOne) SetContactID(v uint64) *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.SetContactID(v)
- })
- }
- // UpdateContactID sets the "contact_id" field to the value that was provided on create.
- func (u *LabelRelationshipUpsertOne) UpdateContactID() *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.UpdateContactID()
- })
- }
- // SetOrganizationID sets the "organization_id" field.
- func (u *LabelRelationshipUpsertOne) SetOrganizationID(v uint64) *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.SetOrganizationID(v)
- })
- }
- // AddOrganizationID adds v to the "organization_id" field.
- func (u *LabelRelationshipUpsertOne) AddOrganizationID(v uint64) *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.AddOrganizationID(v)
- })
- }
- // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
- func (u *LabelRelationshipUpsertOne) UpdateOrganizationID() *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.UpdateOrganizationID()
- })
- }
- // ClearOrganizationID clears the value of the "organization_id" field.
- func (u *LabelRelationshipUpsertOne) ClearOrganizationID() *LabelRelationshipUpsertOne {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.ClearOrganizationID()
- })
- }
- // Exec executes the query.
- func (u *LabelRelationshipUpsertOne) Exec(ctx context.Context) error {
- if len(u.create.conflict) == 0 {
- return errors.New("ent: missing options for LabelRelationshipCreate.OnConflict")
- }
- return u.create.Exec(ctx)
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (u *LabelRelationshipUpsertOne) 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 *LabelRelationshipUpsertOne) 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 *LabelRelationshipUpsertOne) IDX(ctx context.Context) uint64 {
- id, err := u.ID(ctx)
- if err != nil {
- panic(err)
- }
- return id
- }
- // LabelRelationshipCreateBulk is the builder for creating many LabelRelationship entities in bulk.
- type LabelRelationshipCreateBulk struct {
- config
- err error
- builders []*LabelRelationshipCreate
- conflict []sql.ConflictOption
- }
- // Save creates the LabelRelationship entities in the database.
- func (lrcb *LabelRelationshipCreateBulk) Save(ctx context.Context) ([]*LabelRelationship, error) {
- if lrcb.err != nil {
- return nil, lrcb.err
- }
- specs := make([]*sqlgraph.CreateSpec, len(lrcb.builders))
- nodes := make([]*LabelRelationship, len(lrcb.builders))
- mutators := make([]Mutator, len(lrcb.builders))
- for i := range lrcb.builders {
- func(i int, root context.Context) {
- builder := lrcb.builders[i]
- builder.defaults()
- var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
- mutation, ok := m.(*LabelRelationshipMutation)
- 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, lrcb.builders[i+1].mutation)
- } else {
- spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
- spec.OnConflict = lrcb.conflict
- // Invoke the actual operation on the latest mutation in the chain.
- if err = sqlgraph.BatchCreate(ctx, lrcb.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, lrcb.builders[0].mutation); err != nil {
- return nil, err
- }
- }
- return nodes, nil
- }
- // SaveX is like Save, but panics if an error occurs.
- func (lrcb *LabelRelationshipCreateBulk) SaveX(ctx context.Context) []*LabelRelationship {
- v, err := lrcb.Save(ctx)
- if err != nil {
- panic(err)
- }
- return v
- }
- // Exec executes the query.
- func (lrcb *LabelRelationshipCreateBulk) Exec(ctx context.Context) error {
- _, err := lrcb.Save(ctx)
- return err
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (lrcb *LabelRelationshipCreateBulk) ExecX(ctx context.Context) {
- if err := lrcb.Exec(ctx); err != nil {
- panic(err)
- }
- }
- // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
- // of the `INSERT` statement. For example:
- //
- // client.LabelRelationship.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.LabelRelationshipUpsert) {
- // SetCreatedAt(v+v).
- // }).
- // Exec(ctx)
- func (lrcb *LabelRelationshipCreateBulk) OnConflict(opts ...sql.ConflictOption) *LabelRelationshipUpsertBulk {
- lrcb.conflict = opts
- return &LabelRelationshipUpsertBulk{
- create: lrcb,
- }
- }
- // OnConflictColumns calls `OnConflict` and configures the columns
- // as conflict target. Using this option is equivalent to using:
- //
- // client.LabelRelationship.Create().
- // OnConflict(sql.ConflictColumns(columns...)).
- // Exec(ctx)
- func (lrcb *LabelRelationshipCreateBulk) OnConflictColumns(columns ...string) *LabelRelationshipUpsertBulk {
- lrcb.conflict = append(lrcb.conflict, sql.ConflictColumns(columns...))
- return &LabelRelationshipUpsertBulk{
- create: lrcb,
- }
- }
- // LabelRelationshipUpsertBulk is the builder for "upsert"-ing
- // a bulk of LabelRelationship nodes.
- type LabelRelationshipUpsertBulk struct {
- create *LabelRelationshipCreateBulk
- }
- // UpdateNewValues updates the mutable fields using the new values that
- // were set on create. Using this option is equivalent to using:
- //
- // client.LabelRelationship.Create().
- // OnConflict(
- // sql.ResolveWithNewValues(),
- // sql.ResolveWith(func(u *sql.UpdateSet) {
- // u.SetIgnore(labelrelationship.FieldID)
- // }),
- // ).
- // Exec(ctx)
- func (u *LabelRelationshipUpsertBulk) UpdateNewValues() *LabelRelationshipUpsertBulk {
- 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(labelrelationship.FieldID)
- }
- if _, exists := b.mutation.CreatedAt(); exists {
- s.SetIgnore(labelrelationship.FieldCreatedAt)
- }
- }
- }))
- return u
- }
- // Ignore sets each column to itself in case of conflict.
- // Using this option is equivalent to using:
- //
- // client.LabelRelationship.Create().
- // OnConflict(sql.ResolveWithIgnore()).
- // Exec(ctx)
- func (u *LabelRelationshipUpsertBulk) Ignore() *LabelRelationshipUpsertBulk {
- 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 *LabelRelationshipUpsertBulk) DoNothing() *LabelRelationshipUpsertBulk {
- u.create.conflict = append(u.create.conflict, sql.DoNothing())
- return u
- }
- // Update allows overriding fields `UPDATE` values. See the LabelRelationshipCreateBulk.OnConflict
- // documentation for more info.
- func (u *LabelRelationshipUpsertBulk) Update(set func(*LabelRelationshipUpsert)) *LabelRelationshipUpsertBulk {
- u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
- set(&LabelRelationshipUpsert{UpdateSet: update})
- }))
- return u
- }
- // SetUpdatedAt sets the "updated_at" field.
- func (u *LabelRelationshipUpsertBulk) SetUpdatedAt(v time.Time) *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.SetUpdatedAt(v)
- })
- }
- // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
- func (u *LabelRelationshipUpsertBulk) UpdateUpdatedAt() *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.UpdateUpdatedAt()
- })
- }
- // SetStatus sets the "status" field.
- func (u *LabelRelationshipUpsertBulk) SetStatus(v uint8) *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.SetStatus(v)
- })
- }
- // AddStatus adds v to the "status" field.
- func (u *LabelRelationshipUpsertBulk) AddStatus(v uint8) *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.AddStatus(v)
- })
- }
- // UpdateStatus sets the "status" field to the value that was provided on create.
- func (u *LabelRelationshipUpsertBulk) UpdateStatus() *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.UpdateStatus()
- })
- }
- // ClearStatus clears the value of the "status" field.
- func (u *LabelRelationshipUpsertBulk) ClearStatus() *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.ClearStatus()
- })
- }
- // SetDeletedAt sets the "deleted_at" field.
- func (u *LabelRelationshipUpsertBulk) SetDeletedAt(v time.Time) *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.SetDeletedAt(v)
- })
- }
- // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
- func (u *LabelRelationshipUpsertBulk) UpdateDeletedAt() *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.UpdateDeletedAt()
- })
- }
- // ClearDeletedAt clears the value of the "deleted_at" field.
- func (u *LabelRelationshipUpsertBulk) ClearDeletedAt() *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.ClearDeletedAt()
- })
- }
- // SetLabelID sets the "label_id" field.
- func (u *LabelRelationshipUpsertBulk) SetLabelID(v uint64) *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.SetLabelID(v)
- })
- }
- // UpdateLabelID sets the "label_id" field to the value that was provided on create.
- func (u *LabelRelationshipUpsertBulk) UpdateLabelID() *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.UpdateLabelID()
- })
- }
- // SetContactID sets the "contact_id" field.
- func (u *LabelRelationshipUpsertBulk) SetContactID(v uint64) *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.SetContactID(v)
- })
- }
- // UpdateContactID sets the "contact_id" field to the value that was provided on create.
- func (u *LabelRelationshipUpsertBulk) UpdateContactID() *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.UpdateContactID()
- })
- }
- // SetOrganizationID sets the "organization_id" field.
- func (u *LabelRelationshipUpsertBulk) SetOrganizationID(v uint64) *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.SetOrganizationID(v)
- })
- }
- // AddOrganizationID adds v to the "organization_id" field.
- func (u *LabelRelationshipUpsertBulk) AddOrganizationID(v uint64) *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.AddOrganizationID(v)
- })
- }
- // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
- func (u *LabelRelationshipUpsertBulk) UpdateOrganizationID() *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.UpdateOrganizationID()
- })
- }
- // ClearOrganizationID clears the value of the "organization_id" field.
- func (u *LabelRelationshipUpsertBulk) ClearOrganizationID() *LabelRelationshipUpsertBulk {
- return u.Update(func(s *LabelRelationshipUpsert) {
- s.ClearOrganizationID()
- })
- }
- // Exec executes the query.
- func (u *LabelRelationshipUpsertBulk) 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 LabelRelationshipCreateBulk instead", i)
- }
- }
- if len(u.create.conflict) == 0 {
- return errors.New("ent: missing options for LabelRelationshipCreateBulk.OnConflict")
- }
- return u.create.Exec(ctx)
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (u *LabelRelationshipUpsertBulk) ExecX(ctx context.Context) {
- if err := u.create.Exec(ctx); err != nil {
- panic(err)
- }
- }
|