labelrelationship_create.go 31 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "context"
  5. "errors"
  6. "fmt"
  7. "time"
  8. "wechat-api/ent/contact"
  9. "wechat-api/ent/label"
  10. "wechat-api/ent/labelrelationship"
  11. "entgo.io/ent/dialect/sql"
  12. "entgo.io/ent/dialect/sql/sqlgraph"
  13. "entgo.io/ent/schema/field"
  14. )
  15. // LabelRelationshipCreate is the builder for creating a LabelRelationship entity.
  16. type LabelRelationshipCreate struct {
  17. config
  18. mutation *LabelRelationshipMutation
  19. hooks []Hook
  20. conflict []sql.ConflictOption
  21. }
  22. // SetCreatedAt sets the "created_at" field.
  23. func (lrc *LabelRelationshipCreate) SetCreatedAt(t time.Time) *LabelRelationshipCreate {
  24. lrc.mutation.SetCreatedAt(t)
  25. return lrc
  26. }
  27. // SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
  28. func (lrc *LabelRelationshipCreate) SetNillableCreatedAt(t *time.Time) *LabelRelationshipCreate {
  29. if t != nil {
  30. lrc.SetCreatedAt(*t)
  31. }
  32. return lrc
  33. }
  34. // SetUpdatedAt sets the "updated_at" field.
  35. func (lrc *LabelRelationshipCreate) SetUpdatedAt(t time.Time) *LabelRelationshipCreate {
  36. lrc.mutation.SetUpdatedAt(t)
  37. return lrc
  38. }
  39. // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
  40. func (lrc *LabelRelationshipCreate) SetNillableUpdatedAt(t *time.Time) *LabelRelationshipCreate {
  41. if t != nil {
  42. lrc.SetUpdatedAt(*t)
  43. }
  44. return lrc
  45. }
  46. // SetStatus sets the "status" field.
  47. func (lrc *LabelRelationshipCreate) SetStatus(u uint8) *LabelRelationshipCreate {
  48. lrc.mutation.SetStatus(u)
  49. return lrc
  50. }
  51. // SetNillableStatus sets the "status" field if the given value is not nil.
  52. func (lrc *LabelRelationshipCreate) SetNillableStatus(u *uint8) *LabelRelationshipCreate {
  53. if u != nil {
  54. lrc.SetStatus(*u)
  55. }
  56. return lrc
  57. }
  58. // SetLabelID sets the "label_id" field.
  59. func (lrc *LabelRelationshipCreate) SetLabelID(u uint64) *LabelRelationshipCreate {
  60. lrc.mutation.SetLabelID(u)
  61. return lrc
  62. }
  63. // SetNillableLabelID sets the "label_id" field if the given value is not nil.
  64. func (lrc *LabelRelationshipCreate) SetNillableLabelID(u *uint64) *LabelRelationshipCreate {
  65. if u != nil {
  66. lrc.SetLabelID(*u)
  67. }
  68. return lrc
  69. }
  70. // SetContactID sets the "contact_id" field.
  71. func (lrc *LabelRelationshipCreate) SetContactID(u uint64) *LabelRelationshipCreate {
  72. lrc.mutation.SetContactID(u)
  73. return lrc
  74. }
  75. // SetNillableContactID sets the "contact_id" field if the given value is not nil.
  76. func (lrc *LabelRelationshipCreate) SetNillableContactID(u *uint64) *LabelRelationshipCreate {
  77. if u != nil {
  78. lrc.SetContactID(*u)
  79. }
  80. return lrc
  81. }
  82. // SetOrganizationID sets the "organization_id" field.
  83. func (lrc *LabelRelationshipCreate) SetOrganizationID(u uint64) *LabelRelationshipCreate {
  84. lrc.mutation.SetOrganizationID(u)
  85. return lrc
  86. }
  87. // SetNillableOrganizationID sets the "organization_id" field if the given value is not nil.
  88. func (lrc *LabelRelationshipCreate) SetNillableOrganizationID(u *uint64) *LabelRelationshipCreate {
  89. if u != nil {
  90. lrc.SetOrganizationID(*u)
  91. }
  92. return lrc
  93. }
  94. // SetCtype sets the "ctype" field.
  95. func (lrc *LabelRelationshipCreate) SetCtype(u uint64) *LabelRelationshipCreate {
  96. lrc.mutation.SetCtype(u)
  97. return lrc
  98. }
  99. // SetNillableCtype sets the "ctype" field if the given value is not nil.
  100. func (lrc *LabelRelationshipCreate) SetNillableCtype(u *uint64) *LabelRelationshipCreate {
  101. if u != nil {
  102. lrc.SetCtype(*u)
  103. }
  104. return lrc
  105. }
  106. // SetID sets the "id" field.
  107. func (lrc *LabelRelationshipCreate) SetID(u uint64) *LabelRelationshipCreate {
  108. lrc.mutation.SetID(u)
  109. return lrc
  110. }
  111. // SetContactsID sets the "contacts" edge to the Contact entity by ID.
  112. func (lrc *LabelRelationshipCreate) SetContactsID(id uint64) *LabelRelationshipCreate {
  113. lrc.mutation.SetContactsID(id)
  114. return lrc
  115. }
  116. // SetContacts sets the "contacts" edge to the Contact entity.
  117. func (lrc *LabelRelationshipCreate) SetContacts(c *Contact) *LabelRelationshipCreate {
  118. return lrc.SetContactsID(c.ID)
  119. }
  120. // SetLabelsID sets the "labels" edge to the Label entity by ID.
  121. func (lrc *LabelRelationshipCreate) SetLabelsID(id uint64) *LabelRelationshipCreate {
  122. lrc.mutation.SetLabelsID(id)
  123. return lrc
  124. }
  125. // SetLabels sets the "labels" edge to the Label entity.
  126. func (lrc *LabelRelationshipCreate) SetLabels(l *Label) *LabelRelationshipCreate {
  127. return lrc.SetLabelsID(l.ID)
  128. }
  129. // Mutation returns the LabelRelationshipMutation object of the builder.
  130. func (lrc *LabelRelationshipCreate) Mutation() *LabelRelationshipMutation {
  131. return lrc.mutation
  132. }
  133. // Save creates the LabelRelationship in the database.
  134. func (lrc *LabelRelationshipCreate) Save(ctx context.Context) (*LabelRelationship, error) {
  135. lrc.defaults()
  136. return withHooks(ctx, lrc.sqlSave, lrc.mutation, lrc.hooks)
  137. }
  138. // SaveX calls Save and panics if Save returns an error.
  139. func (lrc *LabelRelationshipCreate) SaveX(ctx context.Context) *LabelRelationship {
  140. v, err := lrc.Save(ctx)
  141. if err != nil {
  142. panic(err)
  143. }
  144. return v
  145. }
  146. // Exec executes the query.
  147. func (lrc *LabelRelationshipCreate) Exec(ctx context.Context) error {
  148. _, err := lrc.Save(ctx)
  149. return err
  150. }
  151. // ExecX is like Exec, but panics if an error occurs.
  152. func (lrc *LabelRelationshipCreate) ExecX(ctx context.Context) {
  153. if err := lrc.Exec(ctx); err != nil {
  154. panic(err)
  155. }
  156. }
  157. // defaults sets the default values of the builder before save.
  158. func (lrc *LabelRelationshipCreate) defaults() {
  159. if _, ok := lrc.mutation.CreatedAt(); !ok {
  160. v := labelrelationship.DefaultCreatedAt()
  161. lrc.mutation.SetCreatedAt(v)
  162. }
  163. if _, ok := lrc.mutation.UpdatedAt(); !ok {
  164. v := labelrelationship.DefaultUpdatedAt()
  165. lrc.mutation.SetUpdatedAt(v)
  166. }
  167. if _, ok := lrc.mutation.Status(); !ok {
  168. v := labelrelationship.DefaultStatus
  169. lrc.mutation.SetStatus(v)
  170. }
  171. if _, ok := lrc.mutation.LabelID(); !ok {
  172. v := labelrelationship.DefaultLabelID
  173. lrc.mutation.SetLabelID(v)
  174. }
  175. if _, ok := lrc.mutation.ContactID(); !ok {
  176. v := labelrelationship.DefaultContactID
  177. lrc.mutation.SetContactID(v)
  178. }
  179. if _, ok := lrc.mutation.OrganizationID(); !ok {
  180. v := labelrelationship.DefaultOrganizationID
  181. lrc.mutation.SetOrganizationID(v)
  182. }
  183. if _, ok := lrc.mutation.Ctype(); !ok {
  184. v := labelrelationship.DefaultCtype
  185. lrc.mutation.SetCtype(v)
  186. }
  187. }
  188. // check runs all checks and user-defined validators on the builder.
  189. func (lrc *LabelRelationshipCreate) check() error {
  190. if _, ok := lrc.mutation.CreatedAt(); !ok {
  191. return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "LabelRelationship.created_at"`)}
  192. }
  193. if _, ok := lrc.mutation.UpdatedAt(); !ok {
  194. return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "LabelRelationship.updated_at"`)}
  195. }
  196. if _, ok := lrc.mutation.LabelID(); !ok {
  197. return &ValidationError{Name: "label_id", err: errors.New(`ent: missing required field "LabelRelationship.label_id"`)}
  198. }
  199. if _, ok := lrc.mutation.ContactID(); !ok {
  200. return &ValidationError{Name: "contact_id", err: errors.New(`ent: missing required field "LabelRelationship.contact_id"`)}
  201. }
  202. if _, ok := lrc.mutation.Ctype(); !ok {
  203. return &ValidationError{Name: "ctype", err: errors.New(`ent: missing required field "LabelRelationship.ctype"`)}
  204. }
  205. if _, ok := lrc.mutation.ContactsID(); !ok {
  206. return &ValidationError{Name: "contacts", err: errors.New(`ent: missing required edge "LabelRelationship.contacts"`)}
  207. }
  208. if _, ok := lrc.mutation.LabelsID(); !ok {
  209. return &ValidationError{Name: "labels", err: errors.New(`ent: missing required edge "LabelRelationship.labels"`)}
  210. }
  211. return nil
  212. }
  213. func (lrc *LabelRelationshipCreate) sqlSave(ctx context.Context) (*LabelRelationship, error) {
  214. if err := lrc.check(); err != nil {
  215. return nil, err
  216. }
  217. _node, _spec := lrc.createSpec()
  218. if err := sqlgraph.CreateNode(ctx, lrc.driver, _spec); err != nil {
  219. if sqlgraph.IsConstraintError(err) {
  220. err = &ConstraintError{msg: err.Error(), wrap: err}
  221. }
  222. return nil, err
  223. }
  224. if _spec.ID.Value != _node.ID {
  225. id := _spec.ID.Value.(int64)
  226. _node.ID = uint64(id)
  227. }
  228. lrc.mutation.id = &_node.ID
  229. lrc.mutation.done = true
  230. return _node, nil
  231. }
  232. func (lrc *LabelRelationshipCreate) createSpec() (*LabelRelationship, *sqlgraph.CreateSpec) {
  233. var (
  234. _node = &LabelRelationship{config: lrc.config}
  235. _spec = sqlgraph.NewCreateSpec(labelrelationship.Table, sqlgraph.NewFieldSpec(labelrelationship.FieldID, field.TypeUint64))
  236. )
  237. _spec.OnConflict = lrc.conflict
  238. if id, ok := lrc.mutation.ID(); ok {
  239. _node.ID = id
  240. _spec.ID.Value = id
  241. }
  242. if value, ok := lrc.mutation.CreatedAt(); ok {
  243. _spec.SetField(labelrelationship.FieldCreatedAt, field.TypeTime, value)
  244. _node.CreatedAt = value
  245. }
  246. if value, ok := lrc.mutation.UpdatedAt(); ok {
  247. _spec.SetField(labelrelationship.FieldUpdatedAt, field.TypeTime, value)
  248. _node.UpdatedAt = value
  249. }
  250. if value, ok := lrc.mutation.Status(); ok {
  251. _spec.SetField(labelrelationship.FieldStatus, field.TypeUint8, value)
  252. _node.Status = value
  253. }
  254. if value, ok := lrc.mutation.OrganizationID(); ok {
  255. _spec.SetField(labelrelationship.FieldOrganizationID, field.TypeUint64, value)
  256. _node.OrganizationID = value
  257. }
  258. if value, ok := lrc.mutation.Ctype(); ok {
  259. _spec.SetField(labelrelationship.FieldCtype, field.TypeUint64, value)
  260. _node.Ctype = value
  261. }
  262. if nodes := lrc.mutation.ContactsIDs(); len(nodes) > 0 {
  263. edge := &sqlgraph.EdgeSpec{
  264. Rel: sqlgraph.M2O,
  265. Inverse: true,
  266. Table: labelrelationship.ContactsTable,
  267. Columns: []string{labelrelationship.ContactsColumn},
  268. Bidi: false,
  269. Target: &sqlgraph.EdgeTarget{
  270. IDSpec: sqlgraph.NewFieldSpec(contact.FieldID, field.TypeUint64),
  271. },
  272. }
  273. for _, k := range nodes {
  274. edge.Target.Nodes = append(edge.Target.Nodes, k)
  275. }
  276. _node.ContactID = nodes[0]
  277. _spec.Edges = append(_spec.Edges, edge)
  278. }
  279. if nodes := lrc.mutation.LabelsIDs(); len(nodes) > 0 {
  280. edge := &sqlgraph.EdgeSpec{
  281. Rel: sqlgraph.M2O,
  282. Inverse: true,
  283. Table: labelrelationship.LabelsTable,
  284. Columns: []string{labelrelationship.LabelsColumn},
  285. Bidi: false,
  286. Target: &sqlgraph.EdgeTarget{
  287. IDSpec: sqlgraph.NewFieldSpec(label.FieldID, field.TypeUint64),
  288. },
  289. }
  290. for _, k := range nodes {
  291. edge.Target.Nodes = append(edge.Target.Nodes, k)
  292. }
  293. _node.LabelID = nodes[0]
  294. _spec.Edges = append(_spec.Edges, edge)
  295. }
  296. return _node, _spec
  297. }
  298. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  299. // of the `INSERT` statement. For example:
  300. //
  301. // client.LabelRelationship.Create().
  302. // SetCreatedAt(v).
  303. // OnConflict(
  304. // // Update the row with the new values
  305. // // the was proposed for insertion.
  306. // sql.ResolveWithNewValues(),
  307. // ).
  308. // // Override some of the fields with custom
  309. // // update values.
  310. // Update(func(u *ent.LabelRelationshipUpsert) {
  311. // SetCreatedAt(v+v).
  312. // }).
  313. // Exec(ctx)
  314. func (lrc *LabelRelationshipCreate) OnConflict(opts ...sql.ConflictOption) *LabelRelationshipUpsertOne {
  315. lrc.conflict = opts
  316. return &LabelRelationshipUpsertOne{
  317. create: lrc,
  318. }
  319. }
  320. // OnConflictColumns calls `OnConflict` and configures the columns
  321. // as conflict target. Using this option is equivalent to using:
  322. //
  323. // client.LabelRelationship.Create().
  324. // OnConflict(sql.ConflictColumns(columns...)).
  325. // Exec(ctx)
  326. func (lrc *LabelRelationshipCreate) OnConflictColumns(columns ...string) *LabelRelationshipUpsertOne {
  327. lrc.conflict = append(lrc.conflict, sql.ConflictColumns(columns...))
  328. return &LabelRelationshipUpsertOne{
  329. create: lrc,
  330. }
  331. }
  332. type (
  333. // LabelRelationshipUpsertOne is the builder for "upsert"-ing
  334. // one LabelRelationship node.
  335. LabelRelationshipUpsertOne struct {
  336. create *LabelRelationshipCreate
  337. }
  338. // LabelRelationshipUpsert is the "OnConflict" setter.
  339. LabelRelationshipUpsert struct {
  340. *sql.UpdateSet
  341. }
  342. )
  343. // SetUpdatedAt sets the "updated_at" field.
  344. func (u *LabelRelationshipUpsert) SetUpdatedAt(v time.Time) *LabelRelationshipUpsert {
  345. u.Set(labelrelationship.FieldUpdatedAt, v)
  346. return u
  347. }
  348. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  349. func (u *LabelRelationshipUpsert) UpdateUpdatedAt() *LabelRelationshipUpsert {
  350. u.SetExcluded(labelrelationship.FieldUpdatedAt)
  351. return u
  352. }
  353. // SetStatus sets the "status" field.
  354. func (u *LabelRelationshipUpsert) SetStatus(v uint8) *LabelRelationshipUpsert {
  355. u.Set(labelrelationship.FieldStatus, v)
  356. return u
  357. }
  358. // UpdateStatus sets the "status" field to the value that was provided on create.
  359. func (u *LabelRelationshipUpsert) UpdateStatus() *LabelRelationshipUpsert {
  360. u.SetExcluded(labelrelationship.FieldStatus)
  361. return u
  362. }
  363. // AddStatus adds v to the "status" field.
  364. func (u *LabelRelationshipUpsert) AddStatus(v uint8) *LabelRelationshipUpsert {
  365. u.Add(labelrelationship.FieldStatus, v)
  366. return u
  367. }
  368. // ClearStatus clears the value of the "status" field.
  369. func (u *LabelRelationshipUpsert) ClearStatus() *LabelRelationshipUpsert {
  370. u.SetNull(labelrelationship.FieldStatus)
  371. return u
  372. }
  373. // SetLabelID sets the "label_id" field.
  374. func (u *LabelRelationshipUpsert) SetLabelID(v uint64) *LabelRelationshipUpsert {
  375. u.Set(labelrelationship.FieldLabelID, v)
  376. return u
  377. }
  378. // UpdateLabelID sets the "label_id" field to the value that was provided on create.
  379. func (u *LabelRelationshipUpsert) UpdateLabelID() *LabelRelationshipUpsert {
  380. u.SetExcluded(labelrelationship.FieldLabelID)
  381. return u
  382. }
  383. // SetContactID sets the "contact_id" field.
  384. func (u *LabelRelationshipUpsert) SetContactID(v uint64) *LabelRelationshipUpsert {
  385. u.Set(labelrelationship.FieldContactID, v)
  386. return u
  387. }
  388. // UpdateContactID sets the "contact_id" field to the value that was provided on create.
  389. func (u *LabelRelationshipUpsert) UpdateContactID() *LabelRelationshipUpsert {
  390. u.SetExcluded(labelrelationship.FieldContactID)
  391. return u
  392. }
  393. // SetOrganizationID sets the "organization_id" field.
  394. func (u *LabelRelationshipUpsert) SetOrganizationID(v uint64) *LabelRelationshipUpsert {
  395. u.Set(labelrelationship.FieldOrganizationID, v)
  396. return u
  397. }
  398. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  399. func (u *LabelRelationshipUpsert) UpdateOrganizationID() *LabelRelationshipUpsert {
  400. u.SetExcluded(labelrelationship.FieldOrganizationID)
  401. return u
  402. }
  403. // AddOrganizationID adds v to the "organization_id" field.
  404. func (u *LabelRelationshipUpsert) AddOrganizationID(v uint64) *LabelRelationshipUpsert {
  405. u.Add(labelrelationship.FieldOrganizationID, v)
  406. return u
  407. }
  408. // ClearOrganizationID clears the value of the "organization_id" field.
  409. func (u *LabelRelationshipUpsert) ClearOrganizationID() *LabelRelationshipUpsert {
  410. u.SetNull(labelrelationship.FieldOrganizationID)
  411. return u
  412. }
  413. // SetCtype sets the "ctype" field.
  414. func (u *LabelRelationshipUpsert) SetCtype(v uint64) *LabelRelationshipUpsert {
  415. u.Set(labelrelationship.FieldCtype, v)
  416. return u
  417. }
  418. // UpdateCtype sets the "ctype" field to the value that was provided on create.
  419. func (u *LabelRelationshipUpsert) UpdateCtype() *LabelRelationshipUpsert {
  420. u.SetExcluded(labelrelationship.FieldCtype)
  421. return u
  422. }
  423. // AddCtype adds v to the "ctype" field.
  424. func (u *LabelRelationshipUpsert) AddCtype(v uint64) *LabelRelationshipUpsert {
  425. u.Add(labelrelationship.FieldCtype, v)
  426. return u
  427. }
  428. // UpdateNewValues updates the mutable fields using the new values that were set on create except the ID field.
  429. // Using this option is equivalent to using:
  430. //
  431. // client.LabelRelationship.Create().
  432. // OnConflict(
  433. // sql.ResolveWithNewValues(),
  434. // sql.ResolveWith(func(u *sql.UpdateSet) {
  435. // u.SetIgnore(labelrelationship.FieldID)
  436. // }),
  437. // ).
  438. // Exec(ctx)
  439. func (u *LabelRelationshipUpsertOne) UpdateNewValues() *LabelRelationshipUpsertOne {
  440. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  441. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  442. if _, exists := u.create.mutation.ID(); exists {
  443. s.SetIgnore(labelrelationship.FieldID)
  444. }
  445. if _, exists := u.create.mutation.CreatedAt(); exists {
  446. s.SetIgnore(labelrelationship.FieldCreatedAt)
  447. }
  448. }))
  449. return u
  450. }
  451. // Ignore sets each column to itself in case of conflict.
  452. // Using this option is equivalent to using:
  453. //
  454. // client.LabelRelationship.Create().
  455. // OnConflict(sql.ResolveWithIgnore()).
  456. // Exec(ctx)
  457. func (u *LabelRelationshipUpsertOne) Ignore() *LabelRelationshipUpsertOne {
  458. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  459. return u
  460. }
  461. // DoNothing configures the conflict_action to `DO NOTHING`.
  462. // Supported only by SQLite and PostgreSQL.
  463. func (u *LabelRelationshipUpsertOne) DoNothing() *LabelRelationshipUpsertOne {
  464. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  465. return u
  466. }
  467. // Update allows overriding fields `UPDATE` values. See the LabelRelationshipCreate.OnConflict
  468. // documentation for more info.
  469. func (u *LabelRelationshipUpsertOne) Update(set func(*LabelRelationshipUpsert)) *LabelRelationshipUpsertOne {
  470. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  471. set(&LabelRelationshipUpsert{UpdateSet: update})
  472. }))
  473. return u
  474. }
  475. // SetUpdatedAt sets the "updated_at" field.
  476. func (u *LabelRelationshipUpsertOne) SetUpdatedAt(v time.Time) *LabelRelationshipUpsertOne {
  477. return u.Update(func(s *LabelRelationshipUpsert) {
  478. s.SetUpdatedAt(v)
  479. })
  480. }
  481. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  482. func (u *LabelRelationshipUpsertOne) UpdateUpdatedAt() *LabelRelationshipUpsertOne {
  483. return u.Update(func(s *LabelRelationshipUpsert) {
  484. s.UpdateUpdatedAt()
  485. })
  486. }
  487. // SetStatus sets the "status" field.
  488. func (u *LabelRelationshipUpsertOne) SetStatus(v uint8) *LabelRelationshipUpsertOne {
  489. return u.Update(func(s *LabelRelationshipUpsert) {
  490. s.SetStatus(v)
  491. })
  492. }
  493. // AddStatus adds v to the "status" field.
  494. func (u *LabelRelationshipUpsertOne) AddStatus(v uint8) *LabelRelationshipUpsertOne {
  495. return u.Update(func(s *LabelRelationshipUpsert) {
  496. s.AddStatus(v)
  497. })
  498. }
  499. // UpdateStatus sets the "status" field to the value that was provided on create.
  500. func (u *LabelRelationshipUpsertOne) UpdateStatus() *LabelRelationshipUpsertOne {
  501. return u.Update(func(s *LabelRelationshipUpsert) {
  502. s.UpdateStatus()
  503. })
  504. }
  505. // ClearStatus clears the value of the "status" field.
  506. func (u *LabelRelationshipUpsertOne) ClearStatus() *LabelRelationshipUpsertOne {
  507. return u.Update(func(s *LabelRelationshipUpsert) {
  508. s.ClearStatus()
  509. })
  510. }
  511. // SetLabelID sets the "label_id" field.
  512. func (u *LabelRelationshipUpsertOne) SetLabelID(v uint64) *LabelRelationshipUpsertOne {
  513. return u.Update(func(s *LabelRelationshipUpsert) {
  514. s.SetLabelID(v)
  515. })
  516. }
  517. // UpdateLabelID sets the "label_id" field to the value that was provided on create.
  518. func (u *LabelRelationshipUpsertOne) UpdateLabelID() *LabelRelationshipUpsertOne {
  519. return u.Update(func(s *LabelRelationshipUpsert) {
  520. s.UpdateLabelID()
  521. })
  522. }
  523. // SetContactID sets the "contact_id" field.
  524. func (u *LabelRelationshipUpsertOne) SetContactID(v uint64) *LabelRelationshipUpsertOne {
  525. return u.Update(func(s *LabelRelationshipUpsert) {
  526. s.SetContactID(v)
  527. })
  528. }
  529. // UpdateContactID sets the "contact_id" field to the value that was provided on create.
  530. func (u *LabelRelationshipUpsertOne) UpdateContactID() *LabelRelationshipUpsertOne {
  531. return u.Update(func(s *LabelRelationshipUpsert) {
  532. s.UpdateContactID()
  533. })
  534. }
  535. // SetOrganizationID sets the "organization_id" field.
  536. func (u *LabelRelationshipUpsertOne) SetOrganizationID(v uint64) *LabelRelationshipUpsertOne {
  537. return u.Update(func(s *LabelRelationshipUpsert) {
  538. s.SetOrganizationID(v)
  539. })
  540. }
  541. // AddOrganizationID adds v to the "organization_id" field.
  542. func (u *LabelRelationshipUpsertOne) AddOrganizationID(v uint64) *LabelRelationshipUpsertOne {
  543. return u.Update(func(s *LabelRelationshipUpsert) {
  544. s.AddOrganizationID(v)
  545. })
  546. }
  547. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  548. func (u *LabelRelationshipUpsertOne) UpdateOrganizationID() *LabelRelationshipUpsertOne {
  549. return u.Update(func(s *LabelRelationshipUpsert) {
  550. s.UpdateOrganizationID()
  551. })
  552. }
  553. // ClearOrganizationID clears the value of the "organization_id" field.
  554. func (u *LabelRelationshipUpsertOne) ClearOrganizationID() *LabelRelationshipUpsertOne {
  555. return u.Update(func(s *LabelRelationshipUpsert) {
  556. s.ClearOrganizationID()
  557. })
  558. }
  559. // SetCtype sets the "ctype" field.
  560. func (u *LabelRelationshipUpsertOne) SetCtype(v uint64) *LabelRelationshipUpsertOne {
  561. return u.Update(func(s *LabelRelationshipUpsert) {
  562. s.SetCtype(v)
  563. })
  564. }
  565. // AddCtype adds v to the "ctype" field.
  566. func (u *LabelRelationshipUpsertOne) AddCtype(v uint64) *LabelRelationshipUpsertOne {
  567. return u.Update(func(s *LabelRelationshipUpsert) {
  568. s.AddCtype(v)
  569. })
  570. }
  571. // UpdateCtype sets the "ctype" field to the value that was provided on create.
  572. func (u *LabelRelationshipUpsertOne) UpdateCtype() *LabelRelationshipUpsertOne {
  573. return u.Update(func(s *LabelRelationshipUpsert) {
  574. s.UpdateCtype()
  575. })
  576. }
  577. // Exec executes the query.
  578. func (u *LabelRelationshipUpsertOne) Exec(ctx context.Context) error {
  579. if len(u.create.conflict) == 0 {
  580. return errors.New("ent: missing options for LabelRelationshipCreate.OnConflict")
  581. }
  582. return u.create.Exec(ctx)
  583. }
  584. // ExecX is like Exec, but panics if an error occurs.
  585. func (u *LabelRelationshipUpsertOne) ExecX(ctx context.Context) {
  586. if err := u.create.Exec(ctx); err != nil {
  587. panic(err)
  588. }
  589. }
  590. // Exec executes the UPSERT query and returns the inserted/updated ID.
  591. func (u *LabelRelationshipUpsertOne) ID(ctx context.Context) (id uint64, err error) {
  592. node, err := u.create.Save(ctx)
  593. if err != nil {
  594. return id, err
  595. }
  596. return node.ID, nil
  597. }
  598. // IDX is like ID, but panics if an error occurs.
  599. func (u *LabelRelationshipUpsertOne) IDX(ctx context.Context) uint64 {
  600. id, err := u.ID(ctx)
  601. if err != nil {
  602. panic(err)
  603. }
  604. return id
  605. }
  606. // LabelRelationshipCreateBulk is the builder for creating many LabelRelationship entities in bulk.
  607. type LabelRelationshipCreateBulk struct {
  608. config
  609. err error
  610. builders []*LabelRelationshipCreate
  611. conflict []sql.ConflictOption
  612. }
  613. // Save creates the LabelRelationship entities in the database.
  614. func (lrcb *LabelRelationshipCreateBulk) Save(ctx context.Context) ([]*LabelRelationship, error) {
  615. if lrcb.err != nil {
  616. return nil, lrcb.err
  617. }
  618. specs := make([]*sqlgraph.CreateSpec, len(lrcb.builders))
  619. nodes := make([]*LabelRelationship, len(lrcb.builders))
  620. mutators := make([]Mutator, len(lrcb.builders))
  621. for i := range lrcb.builders {
  622. func(i int, root context.Context) {
  623. builder := lrcb.builders[i]
  624. builder.defaults()
  625. var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
  626. mutation, ok := m.(*LabelRelationshipMutation)
  627. if !ok {
  628. return nil, fmt.Errorf("unexpected mutation type %T", m)
  629. }
  630. if err := builder.check(); err != nil {
  631. return nil, err
  632. }
  633. builder.mutation = mutation
  634. var err error
  635. nodes[i], specs[i] = builder.createSpec()
  636. if i < len(mutators)-1 {
  637. _, err = mutators[i+1].Mutate(root, lrcb.builders[i+1].mutation)
  638. } else {
  639. spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
  640. spec.OnConflict = lrcb.conflict
  641. // Invoke the actual operation on the latest mutation in the chain.
  642. if err = sqlgraph.BatchCreate(ctx, lrcb.driver, spec); err != nil {
  643. if sqlgraph.IsConstraintError(err) {
  644. err = &ConstraintError{msg: err.Error(), wrap: err}
  645. }
  646. }
  647. }
  648. if err != nil {
  649. return nil, err
  650. }
  651. mutation.id = &nodes[i].ID
  652. if specs[i].ID.Value != nil && nodes[i].ID == 0 {
  653. id := specs[i].ID.Value.(int64)
  654. nodes[i].ID = uint64(id)
  655. }
  656. mutation.done = true
  657. return nodes[i], nil
  658. })
  659. for i := len(builder.hooks) - 1; i >= 0; i-- {
  660. mut = builder.hooks[i](mut)
  661. }
  662. mutators[i] = mut
  663. }(i, ctx)
  664. }
  665. if len(mutators) > 0 {
  666. if _, err := mutators[0].Mutate(ctx, lrcb.builders[0].mutation); err != nil {
  667. return nil, err
  668. }
  669. }
  670. return nodes, nil
  671. }
  672. // SaveX is like Save, but panics if an error occurs.
  673. func (lrcb *LabelRelationshipCreateBulk) SaveX(ctx context.Context) []*LabelRelationship {
  674. v, err := lrcb.Save(ctx)
  675. if err != nil {
  676. panic(err)
  677. }
  678. return v
  679. }
  680. // Exec executes the query.
  681. func (lrcb *LabelRelationshipCreateBulk) Exec(ctx context.Context) error {
  682. _, err := lrcb.Save(ctx)
  683. return err
  684. }
  685. // ExecX is like Exec, but panics if an error occurs.
  686. func (lrcb *LabelRelationshipCreateBulk) ExecX(ctx context.Context) {
  687. if err := lrcb.Exec(ctx); err != nil {
  688. panic(err)
  689. }
  690. }
  691. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  692. // of the `INSERT` statement. For example:
  693. //
  694. // client.LabelRelationship.CreateBulk(builders...).
  695. // OnConflict(
  696. // // Update the row with the new values
  697. // // the was proposed for insertion.
  698. // sql.ResolveWithNewValues(),
  699. // ).
  700. // // Override some of the fields with custom
  701. // // update values.
  702. // Update(func(u *ent.LabelRelationshipUpsert) {
  703. // SetCreatedAt(v+v).
  704. // }).
  705. // Exec(ctx)
  706. func (lrcb *LabelRelationshipCreateBulk) OnConflict(opts ...sql.ConflictOption) *LabelRelationshipUpsertBulk {
  707. lrcb.conflict = opts
  708. return &LabelRelationshipUpsertBulk{
  709. create: lrcb,
  710. }
  711. }
  712. // OnConflictColumns calls `OnConflict` and configures the columns
  713. // as conflict target. Using this option is equivalent to using:
  714. //
  715. // client.LabelRelationship.Create().
  716. // OnConflict(sql.ConflictColumns(columns...)).
  717. // Exec(ctx)
  718. func (lrcb *LabelRelationshipCreateBulk) OnConflictColumns(columns ...string) *LabelRelationshipUpsertBulk {
  719. lrcb.conflict = append(lrcb.conflict, sql.ConflictColumns(columns...))
  720. return &LabelRelationshipUpsertBulk{
  721. create: lrcb,
  722. }
  723. }
  724. // LabelRelationshipUpsertBulk is the builder for "upsert"-ing
  725. // a bulk of LabelRelationship nodes.
  726. type LabelRelationshipUpsertBulk struct {
  727. create *LabelRelationshipCreateBulk
  728. }
  729. // UpdateNewValues updates the mutable fields using the new values that
  730. // were set on create. Using this option is equivalent to using:
  731. //
  732. // client.LabelRelationship.Create().
  733. // OnConflict(
  734. // sql.ResolveWithNewValues(),
  735. // sql.ResolveWith(func(u *sql.UpdateSet) {
  736. // u.SetIgnore(labelrelationship.FieldID)
  737. // }),
  738. // ).
  739. // Exec(ctx)
  740. func (u *LabelRelationshipUpsertBulk) UpdateNewValues() *LabelRelationshipUpsertBulk {
  741. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  742. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  743. for _, b := range u.create.builders {
  744. if _, exists := b.mutation.ID(); exists {
  745. s.SetIgnore(labelrelationship.FieldID)
  746. }
  747. if _, exists := b.mutation.CreatedAt(); exists {
  748. s.SetIgnore(labelrelationship.FieldCreatedAt)
  749. }
  750. }
  751. }))
  752. return u
  753. }
  754. // Ignore sets each column to itself in case of conflict.
  755. // Using this option is equivalent to using:
  756. //
  757. // client.LabelRelationship.Create().
  758. // OnConflict(sql.ResolveWithIgnore()).
  759. // Exec(ctx)
  760. func (u *LabelRelationshipUpsertBulk) Ignore() *LabelRelationshipUpsertBulk {
  761. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  762. return u
  763. }
  764. // DoNothing configures the conflict_action to `DO NOTHING`.
  765. // Supported only by SQLite and PostgreSQL.
  766. func (u *LabelRelationshipUpsertBulk) DoNothing() *LabelRelationshipUpsertBulk {
  767. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  768. return u
  769. }
  770. // Update allows overriding fields `UPDATE` values. See the LabelRelationshipCreateBulk.OnConflict
  771. // documentation for more info.
  772. func (u *LabelRelationshipUpsertBulk) Update(set func(*LabelRelationshipUpsert)) *LabelRelationshipUpsertBulk {
  773. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  774. set(&LabelRelationshipUpsert{UpdateSet: update})
  775. }))
  776. return u
  777. }
  778. // SetUpdatedAt sets the "updated_at" field.
  779. func (u *LabelRelationshipUpsertBulk) SetUpdatedAt(v time.Time) *LabelRelationshipUpsertBulk {
  780. return u.Update(func(s *LabelRelationshipUpsert) {
  781. s.SetUpdatedAt(v)
  782. })
  783. }
  784. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  785. func (u *LabelRelationshipUpsertBulk) UpdateUpdatedAt() *LabelRelationshipUpsertBulk {
  786. return u.Update(func(s *LabelRelationshipUpsert) {
  787. s.UpdateUpdatedAt()
  788. })
  789. }
  790. // SetStatus sets the "status" field.
  791. func (u *LabelRelationshipUpsertBulk) SetStatus(v uint8) *LabelRelationshipUpsertBulk {
  792. return u.Update(func(s *LabelRelationshipUpsert) {
  793. s.SetStatus(v)
  794. })
  795. }
  796. // AddStatus adds v to the "status" field.
  797. func (u *LabelRelationshipUpsertBulk) AddStatus(v uint8) *LabelRelationshipUpsertBulk {
  798. return u.Update(func(s *LabelRelationshipUpsert) {
  799. s.AddStatus(v)
  800. })
  801. }
  802. // UpdateStatus sets the "status" field to the value that was provided on create.
  803. func (u *LabelRelationshipUpsertBulk) UpdateStatus() *LabelRelationshipUpsertBulk {
  804. return u.Update(func(s *LabelRelationshipUpsert) {
  805. s.UpdateStatus()
  806. })
  807. }
  808. // ClearStatus clears the value of the "status" field.
  809. func (u *LabelRelationshipUpsertBulk) ClearStatus() *LabelRelationshipUpsertBulk {
  810. return u.Update(func(s *LabelRelationshipUpsert) {
  811. s.ClearStatus()
  812. })
  813. }
  814. // SetLabelID sets the "label_id" field.
  815. func (u *LabelRelationshipUpsertBulk) SetLabelID(v uint64) *LabelRelationshipUpsertBulk {
  816. return u.Update(func(s *LabelRelationshipUpsert) {
  817. s.SetLabelID(v)
  818. })
  819. }
  820. // UpdateLabelID sets the "label_id" field to the value that was provided on create.
  821. func (u *LabelRelationshipUpsertBulk) UpdateLabelID() *LabelRelationshipUpsertBulk {
  822. return u.Update(func(s *LabelRelationshipUpsert) {
  823. s.UpdateLabelID()
  824. })
  825. }
  826. // SetContactID sets the "contact_id" field.
  827. func (u *LabelRelationshipUpsertBulk) SetContactID(v uint64) *LabelRelationshipUpsertBulk {
  828. return u.Update(func(s *LabelRelationshipUpsert) {
  829. s.SetContactID(v)
  830. })
  831. }
  832. // UpdateContactID sets the "contact_id" field to the value that was provided on create.
  833. func (u *LabelRelationshipUpsertBulk) UpdateContactID() *LabelRelationshipUpsertBulk {
  834. return u.Update(func(s *LabelRelationshipUpsert) {
  835. s.UpdateContactID()
  836. })
  837. }
  838. // SetOrganizationID sets the "organization_id" field.
  839. func (u *LabelRelationshipUpsertBulk) SetOrganizationID(v uint64) *LabelRelationshipUpsertBulk {
  840. return u.Update(func(s *LabelRelationshipUpsert) {
  841. s.SetOrganizationID(v)
  842. })
  843. }
  844. // AddOrganizationID adds v to the "organization_id" field.
  845. func (u *LabelRelationshipUpsertBulk) AddOrganizationID(v uint64) *LabelRelationshipUpsertBulk {
  846. return u.Update(func(s *LabelRelationshipUpsert) {
  847. s.AddOrganizationID(v)
  848. })
  849. }
  850. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  851. func (u *LabelRelationshipUpsertBulk) UpdateOrganizationID() *LabelRelationshipUpsertBulk {
  852. return u.Update(func(s *LabelRelationshipUpsert) {
  853. s.UpdateOrganizationID()
  854. })
  855. }
  856. // ClearOrganizationID clears the value of the "organization_id" field.
  857. func (u *LabelRelationshipUpsertBulk) ClearOrganizationID() *LabelRelationshipUpsertBulk {
  858. return u.Update(func(s *LabelRelationshipUpsert) {
  859. s.ClearOrganizationID()
  860. })
  861. }
  862. // SetCtype sets the "ctype" field.
  863. func (u *LabelRelationshipUpsertBulk) SetCtype(v uint64) *LabelRelationshipUpsertBulk {
  864. return u.Update(func(s *LabelRelationshipUpsert) {
  865. s.SetCtype(v)
  866. })
  867. }
  868. // AddCtype adds v to the "ctype" field.
  869. func (u *LabelRelationshipUpsertBulk) AddCtype(v uint64) *LabelRelationshipUpsertBulk {
  870. return u.Update(func(s *LabelRelationshipUpsert) {
  871. s.AddCtype(v)
  872. })
  873. }
  874. // UpdateCtype sets the "ctype" field to the value that was provided on create.
  875. func (u *LabelRelationshipUpsertBulk) UpdateCtype() *LabelRelationshipUpsertBulk {
  876. return u.Update(func(s *LabelRelationshipUpsert) {
  877. s.UpdateCtype()
  878. })
  879. }
  880. // Exec executes the query.
  881. func (u *LabelRelationshipUpsertBulk) Exec(ctx context.Context) error {
  882. if u.create.err != nil {
  883. return u.create.err
  884. }
  885. for i, b := range u.create.builders {
  886. if len(b.conflict) != 0 {
  887. return fmt.Errorf("ent: OnConflict was set for builder %d. Set it on the LabelRelationshipCreateBulk instead", i)
  888. }
  889. }
  890. if len(u.create.conflict) == 0 {
  891. return errors.New("ent: missing options for LabelRelationshipCreateBulk.OnConflict")
  892. }
  893. return u.create.Exec(ctx)
  894. }
  895. // ExecX is like Exec, but panics if an error occurs.
  896. func (u *LabelRelationshipUpsertBulk) ExecX(ctx context.Context) {
  897. if err := u.create.Exec(ctx); err != nil {
  898. panic(err)
  899. }
  900. }