1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303 |
- // Code generated by ent, DO NOT EDIT.
- package ent
- import (
- "context"
- "errors"
- "fmt"
- "time"
- "wechat-api/ent/xunji"
- "entgo.io/ent/dialect/sql"
- "entgo.io/ent/dialect/sql/sqlgraph"
- "entgo.io/ent/schema/field"
- )
- // XunjiCreate is the builder for creating a Xunji entity.
- type XunjiCreate struct {
- config
- mutation *XunjiMutation
- hooks []Hook
- conflict []sql.ConflictOption
- }
- // SetCreatedAt sets the "created_at" field.
- func (xc *XunjiCreate) SetCreatedAt(t time.Time) *XunjiCreate {
- xc.mutation.SetCreatedAt(t)
- return xc
- }
- // SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
- func (xc *XunjiCreate) SetNillableCreatedAt(t *time.Time) *XunjiCreate {
- if t != nil {
- xc.SetCreatedAt(*t)
- }
- return xc
- }
- // SetUpdatedAt sets the "updated_at" field.
- func (xc *XunjiCreate) SetUpdatedAt(t time.Time) *XunjiCreate {
- xc.mutation.SetUpdatedAt(t)
- return xc
- }
- // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
- func (xc *XunjiCreate) SetNillableUpdatedAt(t *time.Time) *XunjiCreate {
- if t != nil {
- xc.SetUpdatedAt(*t)
- }
- return xc
- }
- // SetStatus sets the "status" field.
- func (xc *XunjiCreate) SetStatus(u uint8) *XunjiCreate {
- xc.mutation.SetStatus(u)
- return xc
- }
- // SetNillableStatus sets the "status" field if the given value is not nil.
- func (xc *XunjiCreate) SetNillableStatus(u *uint8) *XunjiCreate {
- if u != nil {
- xc.SetStatus(*u)
- }
- return xc
- }
- // SetDeletedAt sets the "deleted_at" field.
- func (xc *XunjiCreate) SetDeletedAt(t time.Time) *XunjiCreate {
- xc.mutation.SetDeletedAt(t)
- return xc
- }
- // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
- func (xc *XunjiCreate) SetNillableDeletedAt(t *time.Time) *XunjiCreate {
- if t != nil {
- xc.SetDeletedAt(*t)
- }
- return xc
- }
- // SetAppKey sets the "app_key" field.
- func (xc *XunjiCreate) SetAppKey(s string) *XunjiCreate {
- xc.mutation.SetAppKey(s)
- return xc
- }
- // SetAppSecret sets the "app_secret" field.
- func (xc *XunjiCreate) SetAppSecret(s string) *XunjiCreate {
- xc.mutation.SetAppSecret(s)
- return xc
- }
- // SetToken sets the "token" field.
- func (xc *XunjiCreate) SetToken(s string) *XunjiCreate {
- xc.mutation.SetToken(s)
- return xc
- }
- // SetEncodingKey sets the "encoding_key" field.
- func (xc *XunjiCreate) SetEncodingKey(s string) *XunjiCreate {
- xc.mutation.SetEncodingKey(s)
- return xc
- }
- // SetAgentID sets the "agent_id" field.
- func (xc *XunjiCreate) SetAgentID(u uint64) *XunjiCreate {
- xc.mutation.SetAgentID(u)
- return xc
- }
- // SetOrganizationID sets the "organization_id" field.
- func (xc *XunjiCreate) SetOrganizationID(u uint64) *XunjiCreate {
- xc.mutation.SetOrganizationID(u)
- return xc
- }
- // SetWxid sets the "wxid" field.
- func (xc *XunjiCreate) SetWxid(s string) *XunjiCreate {
- xc.mutation.SetWxid(s)
- return xc
- }
- // SetAPIBase sets the "api_base" field.
- func (xc *XunjiCreate) SetAPIBase(s string) *XunjiCreate {
- xc.mutation.SetAPIBase(s)
- return xc
- }
- // SetNillableAPIBase sets the "api_base" field if the given value is not nil.
- func (xc *XunjiCreate) SetNillableAPIBase(s *string) *XunjiCreate {
- if s != nil {
- xc.SetAPIBase(*s)
- }
- return xc
- }
- // SetAPIKey sets the "api_key" field.
- func (xc *XunjiCreate) SetAPIKey(s string) *XunjiCreate {
- xc.mutation.SetAPIKey(s)
- return xc
- }
- // SetNillableAPIKey sets the "api_key" field if the given value is not nil.
- func (xc *XunjiCreate) SetNillableAPIKey(s *string) *XunjiCreate {
- if s != nil {
- xc.SetAPIKey(*s)
- }
- return xc
- }
- // SetID sets the "id" field.
- func (xc *XunjiCreate) SetID(u uint64) *XunjiCreate {
- xc.mutation.SetID(u)
- return xc
- }
- // Mutation returns the XunjiMutation object of the builder.
- func (xc *XunjiCreate) Mutation() *XunjiMutation {
- return xc.mutation
- }
- // Save creates the Xunji in the database.
- func (xc *XunjiCreate) Save(ctx context.Context) (*Xunji, error) {
- if err := xc.defaults(); err != nil {
- return nil, err
- }
- return withHooks(ctx, xc.sqlSave, xc.mutation, xc.hooks)
- }
- // SaveX calls Save and panics if Save returns an error.
- func (xc *XunjiCreate) SaveX(ctx context.Context) *Xunji {
- v, err := xc.Save(ctx)
- if err != nil {
- panic(err)
- }
- return v
- }
- // Exec executes the query.
- func (xc *XunjiCreate) Exec(ctx context.Context) error {
- _, err := xc.Save(ctx)
- return err
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (xc *XunjiCreate) ExecX(ctx context.Context) {
- if err := xc.Exec(ctx); err != nil {
- panic(err)
- }
- }
- // defaults sets the default values of the builder before save.
- func (xc *XunjiCreate) defaults() error {
- if _, ok := xc.mutation.CreatedAt(); !ok {
- if xunji.DefaultCreatedAt == nil {
- return fmt.Errorf("ent: uninitialized xunji.DefaultCreatedAt (forgotten import ent/runtime?)")
- }
- v := xunji.DefaultCreatedAt()
- xc.mutation.SetCreatedAt(v)
- }
- if _, ok := xc.mutation.UpdatedAt(); !ok {
- if xunji.DefaultUpdatedAt == nil {
- return fmt.Errorf("ent: uninitialized xunji.DefaultUpdatedAt (forgotten import ent/runtime?)")
- }
- v := xunji.DefaultUpdatedAt()
- xc.mutation.SetUpdatedAt(v)
- }
- if _, ok := xc.mutation.Status(); !ok {
- v := xunji.DefaultStatus
- xc.mutation.SetStatus(v)
- }
- if _, ok := xc.mutation.APIBase(); !ok {
- v := xunji.DefaultAPIBase
- xc.mutation.SetAPIBase(v)
- }
- if _, ok := xc.mutation.APIKey(); !ok {
- v := xunji.DefaultAPIKey
- xc.mutation.SetAPIKey(v)
- }
- return nil
- }
- // check runs all checks and user-defined validators on the builder.
- func (xc *XunjiCreate) check() error {
- if _, ok := xc.mutation.CreatedAt(); !ok {
- return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "Xunji.created_at"`)}
- }
- if _, ok := xc.mutation.UpdatedAt(); !ok {
- return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "Xunji.updated_at"`)}
- }
- if _, ok := xc.mutation.AppKey(); !ok {
- return &ValidationError{Name: "app_key", err: errors.New(`ent: missing required field "Xunji.app_key"`)}
- }
- if _, ok := xc.mutation.AppSecret(); !ok {
- return &ValidationError{Name: "app_secret", err: errors.New(`ent: missing required field "Xunji.app_secret"`)}
- }
- if _, ok := xc.mutation.Token(); !ok {
- return &ValidationError{Name: "token", err: errors.New(`ent: missing required field "Xunji.token"`)}
- }
- if _, ok := xc.mutation.EncodingKey(); !ok {
- return &ValidationError{Name: "encoding_key", err: errors.New(`ent: missing required field "Xunji.encoding_key"`)}
- }
- if _, ok := xc.mutation.AgentID(); !ok {
- return &ValidationError{Name: "agent_id", err: errors.New(`ent: missing required field "Xunji.agent_id"`)}
- }
- if _, ok := xc.mutation.OrganizationID(); !ok {
- return &ValidationError{Name: "organization_id", err: errors.New(`ent: missing required field "Xunji.organization_id"`)}
- }
- if v, ok := xc.mutation.OrganizationID(); ok {
- if err := xunji.OrganizationIDValidator(v); err != nil {
- return &ValidationError{Name: "organization_id", err: fmt.Errorf(`ent: validator failed for field "Xunji.organization_id": %w`, err)}
- }
- }
- if _, ok := xc.mutation.Wxid(); !ok {
- return &ValidationError{Name: "wxid", err: errors.New(`ent: missing required field "Xunji.wxid"`)}
- }
- return nil
- }
- func (xc *XunjiCreate) sqlSave(ctx context.Context) (*Xunji, error) {
- if err := xc.check(); err != nil {
- return nil, err
- }
- _node, _spec := xc.createSpec()
- if err := sqlgraph.CreateNode(ctx, xc.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)
- }
- xc.mutation.id = &_node.ID
- xc.mutation.done = true
- return _node, nil
- }
- func (xc *XunjiCreate) createSpec() (*Xunji, *sqlgraph.CreateSpec) {
- var (
- _node = &Xunji{config: xc.config}
- _spec = sqlgraph.NewCreateSpec(xunji.Table, sqlgraph.NewFieldSpec(xunji.FieldID, field.TypeUint64))
- )
- _spec.OnConflict = xc.conflict
- if id, ok := xc.mutation.ID(); ok {
- _node.ID = id
- _spec.ID.Value = id
- }
- if value, ok := xc.mutation.CreatedAt(); ok {
- _spec.SetField(xunji.FieldCreatedAt, field.TypeTime, value)
- _node.CreatedAt = value
- }
- if value, ok := xc.mutation.UpdatedAt(); ok {
- _spec.SetField(xunji.FieldUpdatedAt, field.TypeTime, value)
- _node.UpdatedAt = value
- }
- if value, ok := xc.mutation.Status(); ok {
- _spec.SetField(xunji.FieldStatus, field.TypeUint8, value)
- _node.Status = value
- }
- if value, ok := xc.mutation.DeletedAt(); ok {
- _spec.SetField(xunji.FieldDeletedAt, field.TypeTime, value)
- _node.DeletedAt = value
- }
- if value, ok := xc.mutation.AppKey(); ok {
- _spec.SetField(xunji.FieldAppKey, field.TypeString, value)
- _node.AppKey = value
- }
- if value, ok := xc.mutation.AppSecret(); ok {
- _spec.SetField(xunji.FieldAppSecret, field.TypeString, value)
- _node.AppSecret = value
- }
- if value, ok := xc.mutation.Token(); ok {
- _spec.SetField(xunji.FieldToken, field.TypeString, value)
- _node.Token = value
- }
- if value, ok := xc.mutation.EncodingKey(); ok {
- _spec.SetField(xunji.FieldEncodingKey, field.TypeString, value)
- _node.EncodingKey = value
- }
- if value, ok := xc.mutation.AgentID(); ok {
- _spec.SetField(xunji.FieldAgentID, field.TypeUint64, value)
- _node.AgentID = value
- }
- if value, ok := xc.mutation.OrganizationID(); ok {
- _spec.SetField(xunji.FieldOrganizationID, field.TypeUint64, value)
- _node.OrganizationID = value
- }
- if value, ok := xc.mutation.Wxid(); ok {
- _spec.SetField(xunji.FieldWxid, field.TypeString, value)
- _node.Wxid = value
- }
- if value, ok := xc.mutation.APIBase(); ok {
- _spec.SetField(xunji.FieldAPIBase, field.TypeString, value)
- _node.APIBase = value
- }
- if value, ok := xc.mutation.APIKey(); ok {
- _spec.SetField(xunji.FieldAPIKey, field.TypeString, value)
- _node.APIKey = value
- }
- return _node, _spec
- }
- // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
- // of the `INSERT` statement. For example:
- //
- // client.Xunji.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.XunjiUpsert) {
- // SetCreatedAt(v+v).
- // }).
- // Exec(ctx)
- func (xc *XunjiCreate) OnConflict(opts ...sql.ConflictOption) *XunjiUpsertOne {
- xc.conflict = opts
- return &XunjiUpsertOne{
- create: xc,
- }
- }
- // OnConflictColumns calls `OnConflict` and configures the columns
- // as conflict target. Using this option is equivalent to using:
- //
- // client.Xunji.Create().
- // OnConflict(sql.ConflictColumns(columns...)).
- // Exec(ctx)
- func (xc *XunjiCreate) OnConflictColumns(columns ...string) *XunjiUpsertOne {
- xc.conflict = append(xc.conflict, sql.ConflictColumns(columns...))
- return &XunjiUpsertOne{
- create: xc,
- }
- }
- type (
- // XunjiUpsertOne is the builder for "upsert"-ing
- // one Xunji node.
- XunjiUpsertOne struct {
- create *XunjiCreate
- }
- // XunjiUpsert is the "OnConflict" setter.
- XunjiUpsert struct {
- *sql.UpdateSet
- }
- )
- // SetUpdatedAt sets the "updated_at" field.
- func (u *XunjiUpsert) SetUpdatedAt(v time.Time) *XunjiUpsert {
- u.Set(xunji.FieldUpdatedAt, v)
- return u
- }
- // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
- func (u *XunjiUpsert) UpdateUpdatedAt() *XunjiUpsert {
- u.SetExcluded(xunji.FieldUpdatedAt)
- return u
- }
- // SetStatus sets the "status" field.
- func (u *XunjiUpsert) SetStatus(v uint8) *XunjiUpsert {
- u.Set(xunji.FieldStatus, v)
- return u
- }
- // UpdateStatus sets the "status" field to the value that was provided on create.
- func (u *XunjiUpsert) UpdateStatus() *XunjiUpsert {
- u.SetExcluded(xunji.FieldStatus)
- return u
- }
- // AddStatus adds v to the "status" field.
- func (u *XunjiUpsert) AddStatus(v uint8) *XunjiUpsert {
- u.Add(xunji.FieldStatus, v)
- return u
- }
- // ClearStatus clears the value of the "status" field.
- func (u *XunjiUpsert) ClearStatus() *XunjiUpsert {
- u.SetNull(xunji.FieldStatus)
- return u
- }
- // SetDeletedAt sets the "deleted_at" field.
- func (u *XunjiUpsert) SetDeletedAt(v time.Time) *XunjiUpsert {
- u.Set(xunji.FieldDeletedAt, v)
- return u
- }
- // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
- func (u *XunjiUpsert) UpdateDeletedAt() *XunjiUpsert {
- u.SetExcluded(xunji.FieldDeletedAt)
- return u
- }
- // ClearDeletedAt clears the value of the "deleted_at" field.
- func (u *XunjiUpsert) ClearDeletedAt() *XunjiUpsert {
- u.SetNull(xunji.FieldDeletedAt)
- return u
- }
- // SetAppKey sets the "app_key" field.
- func (u *XunjiUpsert) SetAppKey(v string) *XunjiUpsert {
- u.Set(xunji.FieldAppKey, v)
- return u
- }
- // UpdateAppKey sets the "app_key" field to the value that was provided on create.
- func (u *XunjiUpsert) UpdateAppKey() *XunjiUpsert {
- u.SetExcluded(xunji.FieldAppKey)
- return u
- }
- // SetAppSecret sets the "app_secret" field.
- func (u *XunjiUpsert) SetAppSecret(v string) *XunjiUpsert {
- u.Set(xunji.FieldAppSecret, v)
- return u
- }
- // UpdateAppSecret sets the "app_secret" field to the value that was provided on create.
- func (u *XunjiUpsert) UpdateAppSecret() *XunjiUpsert {
- u.SetExcluded(xunji.FieldAppSecret)
- return u
- }
- // SetToken sets the "token" field.
- func (u *XunjiUpsert) SetToken(v string) *XunjiUpsert {
- u.Set(xunji.FieldToken, v)
- return u
- }
- // UpdateToken sets the "token" field to the value that was provided on create.
- func (u *XunjiUpsert) UpdateToken() *XunjiUpsert {
- u.SetExcluded(xunji.FieldToken)
- return u
- }
- // SetEncodingKey sets the "encoding_key" field.
- func (u *XunjiUpsert) SetEncodingKey(v string) *XunjiUpsert {
- u.Set(xunji.FieldEncodingKey, v)
- return u
- }
- // UpdateEncodingKey sets the "encoding_key" field to the value that was provided on create.
- func (u *XunjiUpsert) UpdateEncodingKey() *XunjiUpsert {
- u.SetExcluded(xunji.FieldEncodingKey)
- return u
- }
- // SetAgentID sets the "agent_id" field.
- func (u *XunjiUpsert) SetAgentID(v uint64) *XunjiUpsert {
- u.Set(xunji.FieldAgentID, v)
- return u
- }
- // UpdateAgentID sets the "agent_id" field to the value that was provided on create.
- func (u *XunjiUpsert) UpdateAgentID() *XunjiUpsert {
- u.SetExcluded(xunji.FieldAgentID)
- return u
- }
- // AddAgentID adds v to the "agent_id" field.
- func (u *XunjiUpsert) AddAgentID(v uint64) *XunjiUpsert {
- u.Add(xunji.FieldAgentID, v)
- return u
- }
- // SetOrganizationID sets the "organization_id" field.
- func (u *XunjiUpsert) SetOrganizationID(v uint64) *XunjiUpsert {
- u.Set(xunji.FieldOrganizationID, v)
- return u
- }
- // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
- func (u *XunjiUpsert) UpdateOrganizationID() *XunjiUpsert {
- u.SetExcluded(xunji.FieldOrganizationID)
- return u
- }
- // AddOrganizationID adds v to the "organization_id" field.
- func (u *XunjiUpsert) AddOrganizationID(v uint64) *XunjiUpsert {
- u.Add(xunji.FieldOrganizationID, v)
- return u
- }
- // SetWxid sets the "wxid" field.
- func (u *XunjiUpsert) SetWxid(v string) *XunjiUpsert {
- u.Set(xunji.FieldWxid, v)
- return u
- }
- // UpdateWxid sets the "wxid" field to the value that was provided on create.
- func (u *XunjiUpsert) UpdateWxid() *XunjiUpsert {
- u.SetExcluded(xunji.FieldWxid)
- return u
- }
- // SetAPIBase sets the "api_base" field.
- func (u *XunjiUpsert) SetAPIBase(v string) *XunjiUpsert {
- u.Set(xunji.FieldAPIBase, v)
- return u
- }
- // UpdateAPIBase sets the "api_base" field to the value that was provided on create.
- func (u *XunjiUpsert) UpdateAPIBase() *XunjiUpsert {
- u.SetExcluded(xunji.FieldAPIBase)
- return u
- }
- // ClearAPIBase clears the value of the "api_base" field.
- func (u *XunjiUpsert) ClearAPIBase() *XunjiUpsert {
- u.SetNull(xunji.FieldAPIBase)
- return u
- }
- // SetAPIKey sets the "api_key" field.
- func (u *XunjiUpsert) SetAPIKey(v string) *XunjiUpsert {
- u.Set(xunji.FieldAPIKey, v)
- return u
- }
- // UpdateAPIKey sets the "api_key" field to the value that was provided on create.
- func (u *XunjiUpsert) UpdateAPIKey() *XunjiUpsert {
- u.SetExcluded(xunji.FieldAPIKey)
- return u
- }
- // ClearAPIKey clears the value of the "api_key" field.
- func (u *XunjiUpsert) ClearAPIKey() *XunjiUpsert {
- u.SetNull(xunji.FieldAPIKey)
- 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.Xunji.Create().
- // OnConflict(
- // sql.ResolveWithNewValues(),
- // sql.ResolveWith(func(u *sql.UpdateSet) {
- // u.SetIgnore(xunji.FieldID)
- // }),
- // ).
- // Exec(ctx)
- func (u *XunjiUpsertOne) UpdateNewValues() *XunjiUpsertOne {
- 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(xunji.FieldID)
- }
- if _, exists := u.create.mutation.CreatedAt(); exists {
- s.SetIgnore(xunji.FieldCreatedAt)
- }
- }))
- return u
- }
- // Ignore sets each column to itself in case of conflict.
- // Using this option is equivalent to using:
- //
- // client.Xunji.Create().
- // OnConflict(sql.ResolveWithIgnore()).
- // Exec(ctx)
- func (u *XunjiUpsertOne) Ignore() *XunjiUpsertOne {
- 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 *XunjiUpsertOne) DoNothing() *XunjiUpsertOne {
- u.create.conflict = append(u.create.conflict, sql.DoNothing())
- return u
- }
- // Update allows overriding fields `UPDATE` values. See the XunjiCreate.OnConflict
- // documentation for more info.
- func (u *XunjiUpsertOne) Update(set func(*XunjiUpsert)) *XunjiUpsertOne {
- u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
- set(&XunjiUpsert{UpdateSet: update})
- }))
- return u
- }
- // SetUpdatedAt sets the "updated_at" field.
- func (u *XunjiUpsertOne) SetUpdatedAt(v time.Time) *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.SetUpdatedAt(v)
- })
- }
- // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
- func (u *XunjiUpsertOne) UpdateUpdatedAt() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateUpdatedAt()
- })
- }
- // SetStatus sets the "status" field.
- func (u *XunjiUpsertOne) SetStatus(v uint8) *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.SetStatus(v)
- })
- }
- // AddStatus adds v to the "status" field.
- func (u *XunjiUpsertOne) AddStatus(v uint8) *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.AddStatus(v)
- })
- }
- // UpdateStatus sets the "status" field to the value that was provided on create.
- func (u *XunjiUpsertOne) UpdateStatus() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateStatus()
- })
- }
- // ClearStatus clears the value of the "status" field.
- func (u *XunjiUpsertOne) ClearStatus() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.ClearStatus()
- })
- }
- // SetDeletedAt sets the "deleted_at" field.
- func (u *XunjiUpsertOne) SetDeletedAt(v time.Time) *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.SetDeletedAt(v)
- })
- }
- // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
- func (u *XunjiUpsertOne) UpdateDeletedAt() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateDeletedAt()
- })
- }
- // ClearDeletedAt clears the value of the "deleted_at" field.
- func (u *XunjiUpsertOne) ClearDeletedAt() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.ClearDeletedAt()
- })
- }
- // SetAppKey sets the "app_key" field.
- func (u *XunjiUpsertOne) SetAppKey(v string) *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.SetAppKey(v)
- })
- }
- // UpdateAppKey sets the "app_key" field to the value that was provided on create.
- func (u *XunjiUpsertOne) UpdateAppKey() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateAppKey()
- })
- }
- // SetAppSecret sets the "app_secret" field.
- func (u *XunjiUpsertOne) SetAppSecret(v string) *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.SetAppSecret(v)
- })
- }
- // UpdateAppSecret sets the "app_secret" field to the value that was provided on create.
- func (u *XunjiUpsertOne) UpdateAppSecret() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateAppSecret()
- })
- }
- // SetToken sets the "token" field.
- func (u *XunjiUpsertOne) SetToken(v string) *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.SetToken(v)
- })
- }
- // UpdateToken sets the "token" field to the value that was provided on create.
- func (u *XunjiUpsertOne) UpdateToken() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateToken()
- })
- }
- // SetEncodingKey sets the "encoding_key" field.
- func (u *XunjiUpsertOne) SetEncodingKey(v string) *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.SetEncodingKey(v)
- })
- }
- // UpdateEncodingKey sets the "encoding_key" field to the value that was provided on create.
- func (u *XunjiUpsertOne) UpdateEncodingKey() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateEncodingKey()
- })
- }
- // SetAgentID sets the "agent_id" field.
- func (u *XunjiUpsertOne) SetAgentID(v uint64) *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.SetAgentID(v)
- })
- }
- // AddAgentID adds v to the "agent_id" field.
- func (u *XunjiUpsertOne) AddAgentID(v uint64) *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.AddAgentID(v)
- })
- }
- // UpdateAgentID sets the "agent_id" field to the value that was provided on create.
- func (u *XunjiUpsertOne) UpdateAgentID() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateAgentID()
- })
- }
- // SetOrganizationID sets the "organization_id" field.
- func (u *XunjiUpsertOne) SetOrganizationID(v uint64) *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.SetOrganizationID(v)
- })
- }
- // AddOrganizationID adds v to the "organization_id" field.
- func (u *XunjiUpsertOne) AddOrganizationID(v uint64) *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.AddOrganizationID(v)
- })
- }
- // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
- func (u *XunjiUpsertOne) UpdateOrganizationID() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateOrganizationID()
- })
- }
- // SetWxid sets the "wxid" field.
- func (u *XunjiUpsertOne) SetWxid(v string) *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.SetWxid(v)
- })
- }
- // UpdateWxid sets the "wxid" field to the value that was provided on create.
- func (u *XunjiUpsertOne) UpdateWxid() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateWxid()
- })
- }
- // SetAPIBase sets the "api_base" field.
- func (u *XunjiUpsertOne) SetAPIBase(v string) *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.SetAPIBase(v)
- })
- }
- // UpdateAPIBase sets the "api_base" field to the value that was provided on create.
- func (u *XunjiUpsertOne) UpdateAPIBase() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateAPIBase()
- })
- }
- // ClearAPIBase clears the value of the "api_base" field.
- func (u *XunjiUpsertOne) ClearAPIBase() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.ClearAPIBase()
- })
- }
- // SetAPIKey sets the "api_key" field.
- func (u *XunjiUpsertOne) SetAPIKey(v string) *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.SetAPIKey(v)
- })
- }
- // UpdateAPIKey sets the "api_key" field to the value that was provided on create.
- func (u *XunjiUpsertOne) UpdateAPIKey() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateAPIKey()
- })
- }
- // ClearAPIKey clears the value of the "api_key" field.
- func (u *XunjiUpsertOne) ClearAPIKey() *XunjiUpsertOne {
- return u.Update(func(s *XunjiUpsert) {
- s.ClearAPIKey()
- })
- }
- // Exec executes the query.
- func (u *XunjiUpsertOne) Exec(ctx context.Context) error {
- if len(u.create.conflict) == 0 {
- return errors.New("ent: missing options for XunjiCreate.OnConflict")
- }
- return u.create.Exec(ctx)
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (u *XunjiUpsertOne) 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 *XunjiUpsertOne) 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 *XunjiUpsertOne) IDX(ctx context.Context) uint64 {
- id, err := u.ID(ctx)
- if err != nil {
- panic(err)
- }
- return id
- }
- // XunjiCreateBulk is the builder for creating many Xunji entities in bulk.
- type XunjiCreateBulk struct {
- config
- err error
- builders []*XunjiCreate
- conflict []sql.ConflictOption
- }
- // Save creates the Xunji entities in the database.
- func (xcb *XunjiCreateBulk) Save(ctx context.Context) ([]*Xunji, error) {
- if xcb.err != nil {
- return nil, xcb.err
- }
- specs := make([]*sqlgraph.CreateSpec, len(xcb.builders))
- nodes := make([]*Xunji, len(xcb.builders))
- mutators := make([]Mutator, len(xcb.builders))
- for i := range xcb.builders {
- func(i int, root context.Context) {
- builder := xcb.builders[i]
- builder.defaults()
- var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
- mutation, ok := m.(*XunjiMutation)
- 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, xcb.builders[i+1].mutation)
- } else {
- spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
- spec.OnConflict = xcb.conflict
- // Invoke the actual operation on the latest mutation in the chain.
- if err = sqlgraph.BatchCreate(ctx, xcb.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, xcb.builders[0].mutation); err != nil {
- return nil, err
- }
- }
- return nodes, nil
- }
- // SaveX is like Save, but panics if an error occurs.
- func (xcb *XunjiCreateBulk) SaveX(ctx context.Context) []*Xunji {
- v, err := xcb.Save(ctx)
- if err != nil {
- panic(err)
- }
- return v
- }
- // Exec executes the query.
- func (xcb *XunjiCreateBulk) Exec(ctx context.Context) error {
- _, err := xcb.Save(ctx)
- return err
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (xcb *XunjiCreateBulk) ExecX(ctx context.Context) {
- if err := xcb.Exec(ctx); err != nil {
- panic(err)
- }
- }
- // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
- // of the `INSERT` statement. For example:
- //
- // client.Xunji.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.XunjiUpsert) {
- // SetCreatedAt(v+v).
- // }).
- // Exec(ctx)
- func (xcb *XunjiCreateBulk) OnConflict(opts ...sql.ConflictOption) *XunjiUpsertBulk {
- xcb.conflict = opts
- return &XunjiUpsertBulk{
- create: xcb,
- }
- }
- // OnConflictColumns calls `OnConflict` and configures the columns
- // as conflict target. Using this option is equivalent to using:
- //
- // client.Xunji.Create().
- // OnConflict(sql.ConflictColumns(columns...)).
- // Exec(ctx)
- func (xcb *XunjiCreateBulk) OnConflictColumns(columns ...string) *XunjiUpsertBulk {
- xcb.conflict = append(xcb.conflict, sql.ConflictColumns(columns...))
- return &XunjiUpsertBulk{
- create: xcb,
- }
- }
- // XunjiUpsertBulk is the builder for "upsert"-ing
- // a bulk of Xunji nodes.
- type XunjiUpsertBulk struct {
- create *XunjiCreateBulk
- }
- // UpdateNewValues updates the mutable fields using the new values that
- // were set on create. Using this option is equivalent to using:
- //
- // client.Xunji.Create().
- // OnConflict(
- // sql.ResolveWithNewValues(),
- // sql.ResolveWith(func(u *sql.UpdateSet) {
- // u.SetIgnore(xunji.FieldID)
- // }),
- // ).
- // Exec(ctx)
- func (u *XunjiUpsertBulk) UpdateNewValues() *XunjiUpsertBulk {
- 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(xunji.FieldID)
- }
- if _, exists := b.mutation.CreatedAt(); exists {
- s.SetIgnore(xunji.FieldCreatedAt)
- }
- }
- }))
- return u
- }
- // Ignore sets each column to itself in case of conflict.
- // Using this option is equivalent to using:
- //
- // client.Xunji.Create().
- // OnConflict(sql.ResolveWithIgnore()).
- // Exec(ctx)
- func (u *XunjiUpsertBulk) Ignore() *XunjiUpsertBulk {
- 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 *XunjiUpsertBulk) DoNothing() *XunjiUpsertBulk {
- u.create.conflict = append(u.create.conflict, sql.DoNothing())
- return u
- }
- // Update allows overriding fields `UPDATE` values. See the XunjiCreateBulk.OnConflict
- // documentation for more info.
- func (u *XunjiUpsertBulk) Update(set func(*XunjiUpsert)) *XunjiUpsertBulk {
- u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
- set(&XunjiUpsert{UpdateSet: update})
- }))
- return u
- }
- // SetUpdatedAt sets the "updated_at" field.
- func (u *XunjiUpsertBulk) SetUpdatedAt(v time.Time) *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.SetUpdatedAt(v)
- })
- }
- // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
- func (u *XunjiUpsertBulk) UpdateUpdatedAt() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateUpdatedAt()
- })
- }
- // SetStatus sets the "status" field.
- func (u *XunjiUpsertBulk) SetStatus(v uint8) *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.SetStatus(v)
- })
- }
- // AddStatus adds v to the "status" field.
- func (u *XunjiUpsertBulk) AddStatus(v uint8) *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.AddStatus(v)
- })
- }
- // UpdateStatus sets the "status" field to the value that was provided on create.
- func (u *XunjiUpsertBulk) UpdateStatus() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateStatus()
- })
- }
- // ClearStatus clears the value of the "status" field.
- func (u *XunjiUpsertBulk) ClearStatus() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.ClearStatus()
- })
- }
- // SetDeletedAt sets the "deleted_at" field.
- func (u *XunjiUpsertBulk) SetDeletedAt(v time.Time) *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.SetDeletedAt(v)
- })
- }
- // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
- func (u *XunjiUpsertBulk) UpdateDeletedAt() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateDeletedAt()
- })
- }
- // ClearDeletedAt clears the value of the "deleted_at" field.
- func (u *XunjiUpsertBulk) ClearDeletedAt() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.ClearDeletedAt()
- })
- }
- // SetAppKey sets the "app_key" field.
- func (u *XunjiUpsertBulk) SetAppKey(v string) *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.SetAppKey(v)
- })
- }
- // UpdateAppKey sets the "app_key" field to the value that was provided on create.
- func (u *XunjiUpsertBulk) UpdateAppKey() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateAppKey()
- })
- }
- // SetAppSecret sets the "app_secret" field.
- func (u *XunjiUpsertBulk) SetAppSecret(v string) *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.SetAppSecret(v)
- })
- }
- // UpdateAppSecret sets the "app_secret" field to the value that was provided on create.
- func (u *XunjiUpsertBulk) UpdateAppSecret() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateAppSecret()
- })
- }
- // SetToken sets the "token" field.
- func (u *XunjiUpsertBulk) SetToken(v string) *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.SetToken(v)
- })
- }
- // UpdateToken sets the "token" field to the value that was provided on create.
- func (u *XunjiUpsertBulk) UpdateToken() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateToken()
- })
- }
- // SetEncodingKey sets the "encoding_key" field.
- func (u *XunjiUpsertBulk) SetEncodingKey(v string) *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.SetEncodingKey(v)
- })
- }
- // UpdateEncodingKey sets the "encoding_key" field to the value that was provided on create.
- func (u *XunjiUpsertBulk) UpdateEncodingKey() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateEncodingKey()
- })
- }
- // SetAgentID sets the "agent_id" field.
- func (u *XunjiUpsertBulk) SetAgentID(v uint64) *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.SetAgentID(v)
- })
- }
- // AddAgentID adds v to the "agent_id" field.
- func (u *XunjiUpsertBulk) AddAgentID(v uint64) *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.AddAgentID(v)
- })
- }
- // UpdateAgentID sets the "agent_id" field to the value that was provided on create.
- func (u *XunjiUpsertBulk) UpdateAgentID() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateAgentID()
- })
- }
- // SetOrganizationID sets the "organization_id" field.
- func (u *XunjiUpsertBulk) SetOrganizationID(v uint64) *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.SetOrganizationID(v)
- })
- }
- // AddOrganizationID adds v to the "organization_id" field.
- func (u *XunjiUpsertBulk) AddOrganizationID(v uint64) *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.AddOrganizationID(v)
- })
- }
- // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
- func (u *XunjiUpsertBulk) UpdateOrganizationID() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateOrganizationID()
- })
- }
- // SetWxid sets the "wxid" field.
- func (u *XunjiUpsertBulk) SetWxid(v string) *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.SetWxid(v)
- })
- }
- // UpdateWxid sets the "wxid" field to the value that was provided on create.
- func (u *XunjiUpsertBulk) UpdateWxid() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateWxid()
- })
- }
- // SetAPIBase sets the "api_base" field.
- func (u *XunjiUpsertBulk) SetAPIBase(v string) *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.SetAPIBase(v)
- })
- }
- // UpdateAPIBase sets the "api_base" field to the value that was provided on create.
- func (u *XunjiUpsertBulk) UpdateAPIBase() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateAPIBase()
- })
- }
- // ClearAPIBase clears the value of the "api_base" field.
- func (u *XunjiUpsertBulk) ClearAPIBase() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.ClearAPIBase()
- })
- }
- // SetAPIKey sets the "api_key" field.
- func (u *XunjiUpsertBulk) SetAPIKey(v string) *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.SetAPIKey(v)
- })
- }
- // UpdateAPIKey sets the "api_key" field to the value that was provided on create.
- func (u *XunjiUpsertBulk) UpdateAPIKey() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.UpdateAPIKey()
- })
- }
- // ClearAPIKey clears the value of the "api_key" field.
- func (u *XunjiUpsertBulk) ClearAPIKey() *XunjiUpsertBulk {
- return u.Update(func(s *XunjiUpsert) {
- s.ClearAPIKey()
- })
- }
- // Exec executes the query.
- func (u *XunjiUpsertBulk) 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 XunjiCreateBulk instead", i)
- }
- }
- if len(u.create.conflict) == 0 {
- return errors.New("ent: missing options for XunjiCreateBulk.OnConflict")
- }
- return u.create.Exec(ctx)
- }
- // ExecX is like Exec, but panics if an error occurs.
- func (u *XunjiUpsertBulk) ExecX(ctx context.Context) {
- if err := u.create.Exec(ctx); err != nil {
- panic(err)
- }
- }
|