agent_create.go 35 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253
  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/agent"
  9. "wechat-api/ent/wx"
  10. "entgo.io/ent/dialect/sql"
  11. "entgo.io/ent/dialect/sql/sqlgraph"
  12. "entgo.io/ent/schema/field"
  13. )
  14. // AgentCreate is the builder for creating a Agent entity.
  15. type AgentCreate struct {
  16. config
  17. mutation *AgentMutation
  18. hooks []Hook
  19. conflict []sql.ConflictOption
  20. }
  21. // SetCreatedAt sets the "created_at" field.
  22. func (ac *AgentCreate) SetCreatedAt(t time.Time) *AgentCreate {
  23. ac.mutation.SetCreatedAt(t)
  24. return ac
  25. }
  26. // SetNillableCreatedAt sets the "created_at" field if the given value is not nil.
  27. func (ac *AgentCreate) SetNillableCreatedAt(t *time.Time) *AgentCreate {
  28. if t != nil {
  29. ac.SetCreatedAt(*t)
  30. }
  31. return ac
  32. }
  33. // SetUpdatedAt sets the "updated_at" field.
  34. func (ac *AgentCreate) SetUpdatedAt(t time.Time) *AgentCreate {
  35. ac.mutation.SetUpdatedAt(t)
  36. return ac
  37. }
  38. // SetNillableUpdatedAt sets the "updated_at" field if the given value is not nil.
  39. func (ac *AgentCreate) SetNillableUpdatedAt(t *time.Time) *AgentCreate {
  40. if t != nil {
  41. ac.SetUpdatedAt(*t)
  42. }
  43. return ac
  44. }
  45. // SetDeletedAt sets the "deleted_at" field.
  46. func (ac *AgentCreate) SetDeletedAt(t time.Time) *AgentCreate {
  47. ac.mutation.SetDeletedAt(t)
  48. return ac
  49. }
  50. // SetNillableDeletedAt sets the "deleted_at" field if the given value is not nil.
  51. func (ac *AgentCreate) SetNillableDeletedAt(t *time.Time) *AgentCreate {
  52. if t != nil {
  53. ac.SetDeletedAt(*t)
  54. }
  55. return ac
  56. }
  57. // SetName sets the "name" field.
  58. func (ac *AgentCreate) SetName(s string) *AgentCreate {
  59. ac.mutation.SetName(s)
  60. return ac
  61. }
  62. // SetRole sets the "role" field.
  63. func (ac *AgentCreate) SetRole(s string) *AgentCreate {
  64. ac.mutation.SetRole(s)
  65. return ac
  66. }
  67. // SetStatus sets the "status" field.
  68. func (ac *AgentCreate) SetStatus(i int) *AgentCreate {
  69. ac.mutation.SetStatus(i)
  70. return ac
  71. }
  72. // SetNillableStatus sets the "status" field if the given value is not nil.
  73. func (ac *AgentCreate) SetNillableStatus(i *int) *AgentCreate {
  74. if i != nil {
  75. ac.SetStatus(*i)
  76. }
  77. return ac
  78. }
  79. // SetBackground sets the "background" field.
  80. func (ac *AgentCreate) SetBackground(s string) *AgentCreate {
  81. ac.mutation.SetBackground(s)
  82. return ac
  83. }
  84. // SetNillableBackground sets the "background" field if the given value is not nil.
  85. func (ac *AgentCreate) SetNillableBackground(s *string) *AgentCreate {
  86. if s != nil {
  87. ac.SetBackground(*s)
  88. }
  89. return ac
  90. }
  91. // SetExamples sets the "examples" field.
  92. func (ac *AgentCreate) SetExamples(s string) *AgentCreate {
  93. ac.mutation.SetExamples(s)
  94. return ac
  95. }
  96. // SetNillableExamples sets the "examples" field if the given value is not nil.
  97. func (ac *AgentCreate) SetNillableExamples(s *string) *AgentCreate {
  98. if s != nil {
  99. ac.SetExamples(*s)
  100. }
  101. return ac
  102. }
  103. // SetOrganizationID sets the "organization_id" field.
  104. func (ac *AgentCreate) SetOrganizationID(u uint64) *AgentCreate {
  105. ac.mutation.SetOrganizationID(u)
  106. return ac
  107. }
  108. // SetDatasetID sets the "dataset_id" field.
  109. func (ac *AgentCreate) SetDatasetID(s string) *AgentCreate {
  110. ac.mutation.SetDatasetID(s)
  111. return ac
  112. }
  113. // SetNillableDatasetID sets the "dataset_id" field if the given value is not nil.
  114. func (ac *AgentCreate) SetNillableDatasetID(s *string) *AgentCreate {
  115. if s != nil {
  116. ac.SetDatasetID(*s)
  117. }
  118. return ac
  119. }
  120. // SetCollectionID sets the "collection_id" field.
  121. func (ac *AgentCreate) SetCollectionID(s string) *AgentCreate {
  122. ac.mutation.SetCollectionID(s)
  123. return ac
  124. }
  125. // SetNillableCollectionID sets the "collection_id" field if the given value is not nil.
  126. func (ac *AgentCreate) SetNillableCollectionID(s *string) *AgentCreate {
  127. if s != nil {
  128. ac.SetCollectionID(*s)
  129. }
  130. return ac
  131. }
  132. // SetID sets the "id" field.
  133. func (ac *AgentCreate) SetID(u uint64) *AgentCreate {
  134. ac.mutation.SetID(u)
  135. return ac
  136. }
  137. // AddWxAgentIDs adds the "wx_agent" edge to the Wx entity by IDs.
  138. func (ac *AgentCreate) AddWxAgentIDs(ids ...uint64) *AgentCreate {
  139. ac.mutation.AddWxAgentIDs(ids...)
  140. return ac
  141. }
  142. // AddWxAgent adds the "wx_agent" edges to the Wx entity.
  143. func (ac *AgentCreate) AddWxAgent(w ...*Wx) *AgentCreate {
  144. ids := make([]uint64, len(w))
  145. for i := range w {
  146. ids[i] = w[i].ID
  147. }
  148. return ac.AddWxAgentIDs(ids...)
  149. }
  150. // Mutation returns the AgentMutation object of the builder.
  151. func (ac *AgentCreate) Mutation() *AgentMutation {
  152. return ac.mutation
  153. }
  154. // Save creates the Agent in the database.
  155. func (ac *AgentCreate) Save(ctx context.Context) (*Agent, error) {
  156. if err := ac.defaults(); err != nil {
  157. return nil, err
  158. }
  159. return withHooks(ctx, ac.sqlSave, ac.mutation, ac.hooks)
  160. }
  161. // SaveX calls Save and panics if Save returns an error.
  162. func (ac *AgentCreate) SaveX(ctx context.Context) *Agent {
  163. v, err := ac.Save(ctx)
  164. if err != nil {
  165. panic(err)
  166. }
  167. return v
  168. }
  169. // Exec executes the query.
  170. func (ac *AgentCreate) Exec(ctx context.Context) error {
  171. _, err := ac.Save(ctx)
  172. return err
  173. }
  174. // ExecX is like Exec, but panics if an error occurs.
  175. func (ac *AgentCreate) ExecX(ctx context.Context) {
  176. if err := ac.Exec(ctx); err != nil {
  177. panic(err)
  178. }
  179. }
  180. // defaults sets the default values of the builder before save.
  181. func (ac *AgentCreate) defaults() error {
  182. if _, ok := ac.mutation.CreatedAt(); !ok {
  183. if agent.DefaultCreatedAt == nil {
  184. return fmt.Errorf("ent: uninitialized agent.DefaultCreatedAt (forgotten import ent/runtime?)")
  185. }
  186. v := agent.DefaultCreatedAt()
  187. ac.mutation.SetCreatedAt(v)
  188. }
  189. if _, ok := ac.mutation.UpdatedAt(); !ok {
  190. if agent.DefaultUpdatedAt == nil {
  191. return fmt.Errorf("ent: uninitialized agent.DefaultUpdatedAt (forgotten import ent/runtime?)")
  192. }
  193. v := agent.DefaultUpdatedAt()
  194. ac.mutation.SetUpdatedAt(v)
  195. }
  196. if _, ok := ac.mutation.Status(); !ok {
  197. v := agent.DefaultStatus
  198. ac.mutation.SetStatus(v)
  199. }
  200. if _, ok := ac.mutation.Background(); !ok {
  201. v := agent.DefaultBackground
  202. ac.mutation.SetBackground(v)
  203. }
  204. if _, ok := ac.mutation.Examples(); !ok {
  205. v := agent.DefaultExamples
  206. ac.mutation.SetExamples(v)
  207. }
  208. if _, ok := ac.mutation.DatasetID(); !ok {
  209. v := agent.DefaultDatasetID
  210. ac.mutation.SetDatasetID(v)
  211. }
  212. if _, ok := ac.mutation.CollectionID(); !ok {
  213. v := agent.DefaultCollectionID
  214. ac.mutation.SetCollectionID(v)
  215. }
  216. return nil
  217. }
  218. // check runs all checks and user-defined validators on the builder.
  219. func (ac *AgentCreate) check() error {
  220. if _, ok := ac.mutation.CreatedAt(); !ok {
  221. return &ValidationError{Name: "created_at", err: errors.New(`ent: missing required field "Agent.created_at"`)}
  222. }
  223. if _, ok := ac.mutation.UpdatedAt(); !ok {
  224. return &ValidationError{Name: "updated_at", err: errors.New(`ent: missing required field "Agent.updated_at"`)}
  225. }
  226. if _, ok := ac.mutation.Name(); !ok {
  227. return &ValidationError{Name: "name", err: errors.New(`ent: missing required field "Agent.name"`)}
  228. }
  229. if v, ok := ac.mutation.Name(); ok {
  230. if err := agent.NameValidator(v); err != nil {
  231. return &ValidationError{Name: "name", err: fmt.Errorf(`ent: validator failed for field "Agent.name": %w`, err)}
  232. }
  233. }
  234. if _, ok := ac.mutation.Role(); !ok {
  235. return &ValidationError{Name: "role", err: errors.New(`ent: missing required field "Agent.role"`)}
  236. }
  237. if v, ok := ac.mutation.Status(); ok {
  238. if err := agent.StatusValidator(v); err != nil {
  239. return &ValidationError{Name: "status", err: fmt.Errorf(`ent: validator failed for field "Agent.status": %w`, err)}
  240. }
  241. }
  242. if _, ok := ac.mutation.OrganizationID(); !ok {
  243. return &ValidationError{Name: "organization_id", err: errors.New(`ent: missing required field "Agent.organization_id"`)}
  244. }
  245. if v, ok := ac.mutation.OrganizationID(); ok {
  246. if err := agent.OrganizationIDValidator(v); err != nil {
  247. return &ValidationError{Name: "organization_id", err: fmt.Errorf(`ent: validator failed for field "Agent.organization_id": %w`, err)}
  248. }
  249. }
  250. if _, ok := ac.mutation.DatasetID(); !ok {
  251. return &ValidationError{Name: "dataset_id", err: errors.New(`ent: missing required field "Agent.dataset_id"`)}
  252. }
  253. if v, ok := ac.mutation.DatasetID(); ok {
  254. if err := agent.DatasetIDValidator(v); err != nil {
  255. return &ValidationError{Name: "dataset_id", err: fmt.Errorf(`ent: validator failed for field "Agent.dataset_id": %w`, err)}
  256. }
  257. }
  258. if _, ok := ac.mutation.CollectionID(); !ok {
  259. return &ValidationError{Name: "collection_id", err: errors.New(`ent: missing required field "Agent.collection_id"`)}
  260. }
  261. if v, ok := ac.mutation.CollectionID(); ok {
  262. if err := agent.CollectionIDValidator(v); err != nil {
  263. return &ValidationError{Name: "collection_id", err: fmt.Errorf(`ent: validator failed for field "Agent.collection_id": %w`, err)}
  264. }
  265. }
  266. return nil
  267. }
  268. func (ac *AgentCreate) sqlSave(ctx context.Context) (*Agent, error) {
  269. if err := ac.check(); err != nil {
  270. return nil, err
  271. }
  272. _node, _spec := ac.createSpec()
  273. if err := sqlgraph.CreateNode(ctx, ac.driver, _spec); err != nil {
  274. if sqlgraph.IsConstraintError(err) {
  275. err = &ConstraintError{msg: err.Error(), wrap: err}
  276. }
  277. return nil, err
  278. }
  279. if _spec.ID.Value != _node.ID {
  280. id := _spec.ID.Value.(int64)
  281. _node.ID = uint64(id)
  282. }
  283. ac.mutation.id = &_node.ID
  284. ac.mutation.done = true
  285. return _node, nil
  286. }
  287. func (ac *AgentCreate) createSpec() (*Agent, *sqlgraph.CreateSpec) {
  288. var (
  289. _node = &Agent{config: ac.config}
  290. _spec = sqlgraph.NewCreateSpec(agent.Table, sqlgraph.NewFieldSpec(agent.FieldID, field.TypeUint64))
  291. )
  292. _spec.OnConflict = ac.conflict
  293. if id, ok := ac.mutation.ID(); ok {
  294. _node.ID = id
  295. _spec.ID.Value = id
  296. }
  297. if value, ok := ac.mutation.CreatedAt(); ok {
  298. _spec.SetField(agent.FieldCreatedAt, field.TypeTime, value)
  299. _node.CreatedAt = value
  300. }
  301. if value, ok := ac.mutation.UpdatedAt(); ok {
  302. _spec.SetField(agent.FieldUpdatedAt, field.TypeTime, value)
  303. _node.UpdatedAt = value
  304. }
  305. if value, ok := ac.mutation.DeletedAt(); ok {
  306. _spec.SetField(agent.FieldDeletedAt, field.TypeTime, value)
  307. _node.DeletedAt = value
  308. }
  309. if value, ok := ac.mutation.Name(); ok {
  310. _spec.SetField(agent.FieldName, field.TypeString, value)
  311. _node.Name = value
  312. }
  313. if value, ok := ac.mutation.Role(); ok {
  314. _spec.SetField(agent.FieldRole, field.TypeString, value)
  315. _node.Role = value
  316. }
  317. if value, ok := ac.mutation.Status(); ok {
  318. _spec.SetField(agent.FieldStatus, field.TypeInt, value)
  319. _node.Status = value
  320. }
  321. if value, ok := ac.mutation.Background(); ok {
  322. _spec.SetField(agent.FieldBackground, field.TypeString, value)
  323. _node.Background = value
  324. }
  325. if value, ok := ac.mutation.Examples(); ok {
  326. _spec.SetField(agent.FieldExamples, field.TypeString, value)
  327. _node.Examples = value
  328. }
  329. if value, ok := ac.mutation.OrganizationID(); ok {
  330. _spec.SetField(agent.FieldOrganizationID, field.TypeUint64, value)
  331. _node.OrganizationID = value
  332. }
  333. if value, ok := ac.mutation.DatasetID(); ok {
  334. _spec.SetField(agent.FieldDatasetID, field.TypeString, value)
  335. _node.DatasetID = value
  336. }
  337. if value, ok := ac.mutation.CollectionID(); ok {
  338. _spec.SetField(agent.FieldCollectionID, field.TypeString, value)
  339. _node.CollectionID = value
  340. }
  341. if nodes := ac.mutation.WxAgentIDs(); len(nodes) > 0 {
  342. edge := &sqlgraph.EdgeSpec{
  343. Rel: sqlgraph.O2M,
  344. Inverse: false,
  345. Table: agent.WxAgentTable,
  346. Columns: []string{agent.WxAgentColumn},
  347. Bidi: false,
  348. Target: &sqlgraph.EdgeTarget{
  349. IDSpec: sqlgraph.NewFieldSpec(wx.FieldID, field.TypeUint64),
  350. },
  351. }
  352. for _, k := range nodes {
  353. edge.Target.Nodes = append(edge.Target.Nodes, k)
  354. }
  355. _spec.Edges = append(_spec.Edges, edge)
  356. }
  357. return _node, _spec
  358. }
  359. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  360. // of the `INSERT` statement. For example:
  361. //
  362. // client.Agent.Create().
  363. // SetCreatedAt(v).
  364. // OnConflict(
  365. // // Update the row with the new values
  366. // // the was proposed for insertion.
  367. // sql.ResolveWithNewValues(),
  368. // ).
  369. // // Override some of the fields with custom
  370. // // update values.
  371. // Update(func(u *ent.AgentUpsert) {
  372. // SetCreatedAt(v+v).
  373. // }).
  374. // Exec(ctx)
  375. func (ac *AgentCreate) OnConflict(opts ...sql.ConflictOption) *AgentUpsertOne {
  376. ac.conflict = opts
  377. return &AgentUpsertOne{
  378. create: ac,
  379. }
  380. }
  381. // OnConflictColumns calls `OnConflict` and configures the columns
  382. // as conflict target. Using this option is equivalent to using:
  383. //
  384. // client.Agent.Create().
  385. // OnConflict(sql.ConflictColumns(columns...)).
  386. // Exec(ctx)
  387. func (ac *AgentCreate) OnConflictColumns(columns ...string) *AgentUpsertOne {
  388. ac.conflict = append(ac.conflict, sql.ConflictColumns(columns...))
  389. return &AgentUpsertOne{
  390. create: ac,
  391. }
  392. }
  393. type (
  394. // AgentUpsertOne is the builder for "upsert"-ing
  395. // one Agent node.
  396. AgentUpsertOne struct {
  397. create *AgentCreate
  398. }
  399. // AgentUpsert is the "OnConflict" setter.
  400. AgentUpsert struct {
  401. *sql.UpdateSet
  402. }
  403. )
  404. // SetUpdatedAt sets the "updated_at" field.
  405. func (u *AgentUpsert) SetUpdatedAt(v time.Time) *AgentUpsert {
  406. u.Set(agent.FieldUpdatedAt, v)
  407. return u
  408. }
  409. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  410. func (u *AgentUpsert) UpdateUpdatedAt() *AgentUpsert {
  411. u.SetExcluded(agent.FieldUpdatedAt)
  412. return u
  413. }
  414. // SetDeletedAt sets the "deleted_at" field.
  415. func (u *AgentUpsert) SetDeletedAt(v time.Time) *AgentUpsert {
  416. u.Set(agent.FieldDeletedAt, v)
  417. return u
  418. }
  419. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  420. func (u *AgentUpsert) UpdateDeletedAt() *AgentUpsert {
  421. u.SetExcluded(agent.FieldDeletedAt)
  422. return u
  423. }
  424. // ClearDeletedAt clears the value of the "deleted_at" field.
  425. func (u *AgentUpsert) ClearDeletedAt() *AgentUpsert {
  426. u.SetNull(agent.FieldDeletedAt)
  427. return u
  428. }
  429. // SetName sets the "name" field.
  430. func (u *AgentUpsert) SetName(v string) *AgentUpsert {
  431. u.Set(agent.FieldName, v)
  432. return u
  433. }
  434. // UpdateName sets the "name" field to the value that was provided on create.
  435. func (u *AgentUpsert) UpdateName() *AgentUpsert {
  436. u.SetExcluded(agent.FieldName)
  437. return u
  438. }
  439. // SetRole sets the "role" field.
  440. func (u *AgentUpsert) SetRole(v string) *AgentUpsert {
  441. u.Set(agent.FieldRole, v)
  442. return u
  443. }
  444. // UpdateRole sets the "role" field to the value that was provided on create.
  445. func (u *AgentUpsert) UpdateRole() *AgentUpsert {
  446. u.SetExcluded(agent.FieldRole)
  447. return u
  448. }
  449. // SetStatus sets the "status" field.
  450. func (u *AgentUpsert) SetStatus(v int) *AgentUpsert {
  451. u.Set(agent.FieldStatus, v)
  452. return u
  453. }
  454. // UpdateStatus sets the "status" field to the value that was provided on create.
  455. func (u *AgentUpsert) UpdateStatus() *AgentUpsert {
  456. u.SetExcluded(agent.FieldStatus)
  457. return u
  458. }
  459. // AddStatus adds v to the "status" field.
  460. func (u *AgentUpsert) AddStatus(v int) *AgentUpsert {
  461. u.Add(agent.FieldStatus, v)
  462. return u
  463. }
  464. // ClearStatus clears the value of the "status" field.
  465. func (u *AgentUpsert) ClearStatus() *AgentUpsert {
  466. u.SetNull(agent.FieldStatus)
  467. return u
  468. }
  469. // SetBackground sets the "background" field.
  470. func (u *AgentUpsert) SetBackground(v string) *AgentUpsert {
  471. u.Set(agent.FieldBackground, v)
  472. return u
  473. }
  474. // UpdateBackground sets the "background" field to the value that was provided on create.
  475. func (u *AgentUpsert) UpdateBackground() *AgentUpsert {
  476. u.SetExcluded(agent.FieldBackground)
  477. return u
  478. }
  479. // ClearBackground clears the value of the "background" field.
  480. func (u *AgentUpsert) ClearBackground() *AgentUpsert {
  481. u.SetNull(agent.FieldBackground)
  482. return u
  483. }
  484. // SetExamples sets the "examples" field.
  485. func (u *AgentUpsert) SetExamples(v string) *AgentUpsert {
  486. u.Set(agent.FieldExamples, v)
  487. return u
  488. }
  489. // UpdateExamples sets the "examples" field to the value that was provided on create.
  490. func (u *AgentUpsert) UpdateExamples() *AgentUpsert {
  491. u.SetExcluded(agent.FieldExamples)
  492. return u
  493. }
  494. // ClearExamples clears the value of the "examples" field.
  495. func (u *AgentUpsert) ClearExamples() *AgentUpsert {
  496. u.SetNull(agent.FieldExamples)
  497. return u
  498. }
  499. // SetOrganizationID sets the "organization_id" field.
  500. func (u *AgentUpsert) SetOrganizationID(v uint64) *AgentUpsert {
  501. u.Set(agent.FieldOrganizationID, v)
  502. return u
  503. }
  504. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  505. func (u *AgentUpsert) UpdateOrganizationID() *AgentUpsert {
  506. u.SetExcluded(agent.FieldOrganizationID)
  507. return u
  508. }
  509. // AddOrganizationID adds v to the "organization_id" field.
  510. func (u *AgentUpsert) AddOrganizationID(v uint64) *AgentUpsert {
  511. u.Add(agent.FieldOrganizationID, v)
  512. return u
  513. }
  514. // SetDatasetID sets the "dataset_id" field.
  515. func (u *AgentUpsert) SetDatasetID(v string) *AgentUpsert {
  516. u.Set(agent.FieldDatasetID, v)
  517. return u
  518. }
  519. // UpdateDatasetID sets the "dataset_id" field to the value that was provided on create.
  520. func (u *AgentUpsert) UpdateDatasetID() *AgentUpsert {
  521. u.SetExcluded(agent.FieldDatasetID)
  522. return u
  523. }
  524. // SetCollectionID sets the "collection_id" field.
  525. func (u *AgentUpsert) SetCollectionID(v string) *AgentUpsert {
  526. u.Set(agent.FieldCollectionID, v)
  527. return u
  528. }
  529. // UpdateCollectionID sets the "collection_id" field to the value that was provided on create.
  530. func (u *AgentUpsert) UpdateCollectionID() *AgentUpsert {
  531. u.SetExcluded(agent.FieldCollectionID)
  532. return u
  533. }
  534. // UpdateNewValues updates the mutable fields using the new values that were set on create except the ID field.
  535. // Using this option is equivalent to using:
  536. //
  537. // client.Agent.Create().
  538. // OnConflict(
  539. // sql.ResolveWithNewValues(),
  540. // sql.ResolveWith(func(u *sql.UpdateSet) {
  541. // u.SetIgnore(agent.FieldID)
  542. // }),
  543. // ).
  544. // Exec(ctx)
  545. func (u *AgentUpsertOne) UpdateNewValues() *AgentUpsertOne {
  546. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  547. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  548. if _, exists := u.create.mutation.ID(); exists {
  549. s.SetIgnore(agent.FieldID)
  550. }
  551. if _, exists := u.create.mutation.CreatedAt(); exists {
  552. s.SetIgnore(agent.FieldCreatedAt)
  553. }
  554. }))
  555. return u
  556. }
  557. // Ignore sets each column to itself in case of conflict.
  558. // Using this option is equivalent to using:
  559. //
  560. // client.Agent.Create().
  561. // OnConflict(sql.ResolveWithIgnore()).
  562. // Exec(ctx)
  563. func (u *AgentUpsertOne) Ignore() *AgentUpsertOne {
  564. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  565. return u
  566. }
  567. // DoNothing configures the conflict_action to `DO NOTHING`.
  568. // Supported only by SQLite and PostgreSQL.
  569. func (u *AgentUpsertOne) DoNothing() *AgentUpsertOne {
  570. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  571. return u
  572. }
  573. // Update allows overriding fields `UPDATE` values. See the AgentCreate.OnConflict
  574. // documentation for more info.
  575. func (u *AgentUpsertOne) Update(set func(*AgentUpsert)) *AgentUpsertOne {
  576. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  577. set(&AgentUpsert{UpdateSet: update})
  578. }))
  579. return u
  580. }
  581. // SetUpdatedAt sets the "updated_at" field.
  582. func (u *AgentUpsertOne) SetUpdatedAt(v time.Time) *AgentUpsertOne {
  583. return u.Update(func(s *AgentUpsert) {
  584. s.SetUpdatedAt(v)
  585. })
  586. }
  587. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  588. func (u *AgentUpsertOne) UpdateUpdatedAt() *AgentUpsertOne {
  589. return u.Update(func(s *AgentUpsert) {
  590. s.UpdateUpdatedAt()
  591. })
  592. }
  593. // SetDeletedAt sets the "deleted_at" field.
  594. func (u *AgentUpsertOne) SetDeletedAt(v time.Time) *AgentUpsertOne {
  595. return u.Update(func(s *AgentUpsert) {
  596. s.SetDeletedAt(v)
  597. })
  598. }
  599. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  600. func (u *AgentUpsertOne) UpdateDeletedAt() *AgentUpsertOne {
  601. return u.Update(func(s *AgentUpsert) {
  602. s.UpdateDeletedAt()
  603. })
  604. }
  605. // ClearDeletedAt clears the value of the "deleted_at" field.
  606. func (u *AgentUpsertOne) ClearDeletedAt() *AgentUpsertOne {
  607. return u.Update(func(s *AgentUpsert) {
  608. s.ClearDeletedAt()
  609. })
  610. }
  611. // SetName sets the "name" field.
  612. func (u *AgentUpsertOne) SetName(v string) *AgentUpsertOne {
  613. return u.Update(func(s *AgentUpsert) {
  614. s.SetName(v)
  615. })
  616. }
  617. // UpdateName sets the "name" field to the value that was provided on create.
  618. func (u *AgentUpsertOne) UpdateName() *AgentUpsertOne {
  619. return u.Update(func(s *AgentUpsert) {
  620. s.UpdateName()
  621. })
  622. }
  623. // SetRole sets the "role" field.
  624. func (u *AgentUpsertOne) SetRole(v string) *AgentUpsertOne {
  625. return u.Update(func(s *AgentUpsert) {
  626. s.SetRole(v)
  627. })
  628. }
  629. // UpdateRole sets the "role" field to the value that was provided on create.
  630. func (u *AgentUpsertOne) UpdateRole() *AgentUpsertOne {
  631. return u.Update(func(s *AgentUpsert) {
  632. s.UpdateRole()
  633. })
  634. }
  635. // SetStatus sets the "status" field.
  636. func (u *AgentUpsertOne) SetStatus(v int) *AgentUpsertOne {
  637. return u.Update(func(s *AgentUpsert) {
  638. s.SetStatus(v)
  639. })
  640. }
  641. // AddStatus adds v to the "status" field.
  642. func (u *AgentUpsertOne) AddStatus(v int) *AgentUpsertOne {
  643. return u.Update(func(s *AgentUpsert) {
  644. s.AddStatus(v)
  645. })
  646. }
  647. // UpdateStatus sets the "status" field to the value that was provided on create.
  648. func (u *AgentUpsertOne) UpdateStatus() *AgentUpsertOne {
  649. return u.Update(func(s *AgentUpsert) {
  650. s.UpdateStatus()
  651. })
  652. }
  653. // ClearStatus clears the value of the "status" field.
  654. func (u *AgentUpsertOne) ClearStatus() *AgentUpsertOne {
  655. return u.Update(func(s *AgentUpsert) {
  656. s.ClearStatus()
  657. })
  658. }
  659. // SetBackground sets the "background" field.
  660. func (u *AgentUpsertOne) SetBackground(v string) *AgentUpsertOne {
  661. return u.Update(func(s *AgentUpsert) {
  662. s.SetBackground(v)
  663. })
  664. }
  665. // UpdateBackground sets the "background" field to the value that was provided on create.
  666. func (u *AgentUpsertOne) UpdateBackground() *AgentUpsertOne {
  667. return u.Update(func(s *AgentUpsert) {
  668. s.UpdateBackground()
  669. })
  670. }
  671. // ClearBackground clears the value of the "background" field.
  672. func (u *AgentUpsertOne) ClearBackground() *AgentUpsertOne {
  673. return u.Update(func(s *AgentUpsert) {
  674. s.ClearBackground()
  675. })
  676. }
  677. // SetExamples sets the "examples" field.
  678. func (u *AgentUpsertOne) SetExamples(v string) *AgentUpsertOne {
  679. return u.Update(func(s *AgentUpsert) {
  680. s.SetExamples(v)
  681. })
  682. }
  683. // UpdateExamples sets the "examples" field to the value that was provided on create.
  684. func (u *AgentUpsertOne) UpdateExamples() *AgentUpsertOne {
  685. return u.Update(func(s *AgentUpsert) {
  686. s.UpdateExamples()
  687. })
  688. }
  689. // ClearExamples clears the value of the "examples" field.
  690. func (u *AgentUpsertOne) ClearExamples() *AgentUpsertOne {
  691. return u.Update(func(s *AgentUpsert) {
  692. s.ClearExamples()
  693. })
  694. }
  695. // SetOrganizationID sets the "organization_id" field.
  696. func (u *AgentUpsertOne) SetOrganizationID(v uint64) *AgentUpsertOne {
  697. return u.Update(func(s *AgentUpsert) {
  698. s.SetOrganizationID(v)
  699. })
  700. }
  701. // AddOrganizationID adds v to the "organization_id" field.
  702. func (u *AgentUpsertOne) AddOrganizationID(v uint64) *AgentUpsertOne {
  703. return u.Update(func(s *AgentUpsert) {
  704. s.AddOrganizationID(v)
  705. })
  706. }
  707. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  708. func (u *AgentUpsertOne) UpdateOrganizationID() *AgentUpsertOne {
  709. return u.Update(func(s *AgentUpsert) {
  710. s.UpdateOrganizationID()
  711. })
  712. }
  713. // SetDatasetID sets the "dataset_id" field.
  714. func (u *AgentUpsertOne) SetDatasetID(v string) *AgentUpsertOne {
  715. return u.Update(func(s *AgentUpsert) {
  716. s.SetDatasetID(v)
  717. })
  718. }
  719. // UpdateDatasetID sets the "dataset_id" field to the value that was provided on create.
  720. func (u *AgentUpsertOne) UpdateDatasetID() *AgentUpsertOne {
  721. return u.Update(func(s *AgentUpsert) {
  722. s.UpdateDatasetID()
  723. })
  724. }
  725. // SetCollectionID sets the "collection_id" field.
  726. func (u *AgentUpsertOne) SetCollectionID(v string) *AgentUpsertOne {
  727. return u.Update(func(s *AgentUpsert) {
  728. s.SetCollectionID(v)
  729. })
  730. }
  731. // UpdateCollectionID sets the "collection_id" field to the value that was provided on create.
  732. func (u *AgentUpsertOne) UpdateCollectionID() *AgentUpsertOne {
  733. return u.Update(func(s *AgentUpsert) {
  734. s.UpdateCollectionID()
  735. })
  736. }
  737. // Exec executes the query.
  738. func (u *AgentUpsertOne) Exec(ctx context.Context) error {
  739. if len(u.create.conflict) == 0 {
  740. return errors.New("ent: missing options for AgentCreate.OnConflict")
  741. }
  742. return u.create.Exec(ctx)
  743. }
  744. // ExecX is like Exec, but panics if an error occurs.
  745. func (u *AgentUpsertOne) ExecX(ctx context.Context) {
  746. if err := u.create.Exec(ctx); err != nil {
  747. panic(err)
  748. }
  749. }
  750. // Exec executes the UPSERT query and returns the inserted/updated ID.
  751. func (u *AgentUpsertOne) ID(ctx context.Context) (id uint64, err error) {
  752. node, err := u.create.Save(ctx)
  753. if err != nil {
  754. return id, err
  755. }
  756. return node.ID, nil
  757. }
  758. // IDX is like ID, but panics if an error occurs.
  759. func (u *AgentUpsertOne) IDX(ctx context.Context) uint64 {
  760. id, err := u.ID(ctx)
  761. if err != nil {
  762. panic(err)
  763. }
  764. return id
  765. }
  766. // AgentCreateBulk is the builder for creating many Agent entities in bulk.
  767. type AgentCreateBulk struct {
  768. config
  769. err error
  770. builders []*AgentCreate
  771. conflict []sql.ConflictOption
  772. }
  773. // Save creates the Agent entities in the database.
  774. func (acb *AgentCreateBulk) Save(ctx context.Context) ([]*Agent, error) {
  775. if acb.err != nil {
  776. return nil, acb.err
  777. }
  778. specs := make([]*sqlgraph.CreateSpec, len(acb.builders))
  779. nodes := make([]*Agent, len(acb.builders))
  780. mutators := make([]Mutator, len(acb.builders))
  781. for i := range acb.builders {
  782. func(i int, root context.Context) {
  783. builder := acb.builders[i]
  784. builder.defaults()
  785. var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
  786. mutation, ok := m.(*AgentMutation)
  787. if !ok {
  788. return nil, fmt.Errorf("unexpected mutation type %T", m)
  789. }
  790. if err := builder.check(); err != nil {
  791. return nil, err
  792. }
  793. builder.mutation = mutation
  794. var err error
  795. nodes[i], specs[i] = builder.createSpec()
  796. if i < len(mutators)-1 {
  797. _, err = mutators[i+1].Mutate(root, acb.builders[i+1].mutation)
  798. } else {
  799. spec := &sqlgraph.BatchCreateSpec{Nodes: specs}
  800. spec.OnConflict = acb.conflict
  801. // Invoke the actual operation on the latest mutation in the chain.
  802. if err = sqlgraph.BatchCreate(ctx, acb.driver, spec); err != nil {
  803. if sqlgraph.IsConstraintError(err) {
  804. err = &ConstraintError{msg: err.Error(), wrap: err}
  805. }
  806. }
  807. }
  808. if err != nil {
  809. return nil, err
  810. }
  811. mutation.id = &nodes[i].ID
  812. if specs[i].ID.Value != nil && nodes[i].ID == 0 {
  813. id := specs[i].ID.Value.(int64)
  814. nodes[i].ID = uint64(id)
  815. }
  816. mutation.done = true
  817. return nodes[i], nil
  818. })
  819. for i := len(builder.hooks) - 1; i >= 0; i-- {
  820. mut = builder.hooks[i](mut)
  821. }
  822. mutators[i] = mut
  823. }(i, ctx)
  824. }
  825. if len(mutators) > 0 {
  826. if _, err := mutators[0].Mutate(ctx, acb.builders[0].mutation); err != nil {
  827. return nil, err
  828. }
  829. }
  830. return nodes, nil
  831. }
  832. // SaveX is like Save, but panics if an error occurs.
  833. func (acb *AgentCreateBulk) SaveX(ctx context.Context) []*Agent {
  834. v, err := acb.Save(ctx)
  835. if err != nil {
  836. panic(err)
  837. }
  838. return v
  839. }
  840. // Exec executes the query.
  841. func (acb *AgentCreateBulk) Exec(ctx context.Context) error {
  842. _, err := acb.Save(ctx)
  843. return err
  844. }
  845. // ExecX is like Exec, but panics if an error occurs.
  846. func (acb *AgentCreateBulk) ExecX(ctx context.Context) {
  847. if err := acb.Exec(ctx); err != nil {
  848. panic(err)
  849. }
  850. }
  851. // OnConflict allows configuring the `ON CONFLICT` / `ON DUPLICATE KEY` clause
  852. // of the `INSERT` statement. For example:
  853. //
  854. // client.Agent.CreateBulk(builders...).
  855. // OnConflict(
  856. // // Update the row with the new values
  857. // // the was proposed for insertion.
  858. // sql.ResolveWithNewValues(),
  859. // ).
  860. // // Override some of the fields with custom
  861. // // update values.
  862. // Update(func(u *ent.AgentUpsert) {
  863. // SetCreatedAt(v+v).
  864. // }).
  865. // Exec(ctx)
  866. func (acb *AgentCreateBulk) OnConflict(opts ...sql.ConflictOption) *AgentUpsertBulk {
  867. acb.conflict = opts
  868. return &AgentUpsertBulk{
  869. create: acb,
  870. }
  871. }
  872. // OnConflictColumns calls `OnConflict` and configures the columns
  873. // as conflict target. Using this option is equivalent to using:
  874. //
  875. // client.Agent.Create().
  876. // OnConflict(sql.ConflictColumns(columns...)).
  877. // Exec(ctx)
  878. func (acb *AgentCreateBulk) OnConflictColumns(columns ...string) *AgentUpsertBulk {
  879. acb.conflict = append(acb.conflict, sql.ConflictColumns(columns...))
  880. return &AgentUpsertBulk{
  881. create: acb,
  882. }
  883. }
  884. // AgentUpsertBulk is the builder for "upsert"-ing
  885. // a bulk of Agent nodes.
  886. type AgentUpsertBulk struct {
  887. create *AgentCreateBulk
  888. }
  889. // UpdateNewValues updates the mutable fields using the new values that
  890. // were set on create. Using this option is equivalent to using:
  891. //
  892. // client.Agent.Create().
  893. // OnConflict(
  894. // sql.ResolveWithNewValues(),
  895. // sql.ResolveWith(func(u *sql.UpdateSet) {
  896. // u.SetIgnore(agent.FieldID)
  897. // }),
  898. // ).
  899. // Exec(ctx)
  900. func (u *AgentUpsertBulk) UpdateNewValues() *AgentUpsertBulk {
  901. u.create.conflict = append(u.create.conflict, sql.ResolveWithNewValues())
  902. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(s *sql.UpdateSet) {
  903. for _, b := range u.create.builders {
  904. if _, exists := b.mutation.ID(); exists {
  905. s.SetIgnore(agent.FieldID)
  906. }
  907. if _, exists := b.mutation.CreatedAt(); exists {
  908. s.SetIgnore(agent.FieldCreatedAt)
  909. }
  910. }
  911. }))
  912. return u
  913. }
  914. // Ignore sets each column to itself in case of conflict.
  915. // Using this option is equivalent to using:
  916. //
  917. // client.Agent.Create().
  918. // OnConflict(sql.ResolveWithIgnore()).
  919. // Exec(ctx)
  920. func (u *AgentUpsertBulk) Ignore() *AgentUpsertBulk {
  921. u.create.conflict = append(u.create.conflict, sql.ResolveWithIgnore())
  922. return u
  923. }
  924. // DoNothing configures the conflict_action to `DO NOTHING`.
  925. // Supported only by SQLite and PostgreSQL.
  926. func (u *AgentUpsertBulk) DoNothing() *AgentUpsertBulk {
  927. u.create.conflict = append(u.create.conflict, sql.DoNothing())
  928. return u
  929. }
  930. // Update allows overriding fields `UPDATE` values. See the AgentCreateBulk.OnConflict
  931. // documentation for more info.
  932. func (u *AgentUpsertBulk) Update(set func(*AgentUpsert)) *AgentUpsertBulk {
  933. u.create.conflict = append(u.create.conflict, sql.ResolveWith(func(update *sql.UpdateSet) {
  934. set(&AgentUpsert{UpdateSet: update})
  935. }))
  936. return u
  937. }
  938. // SetUpdatedAt sets the "updated_at" field.
  939. func (u *AgentUpsertBulk) SetUpdatedAt(v time.Time) *AgentUpsertBulk {
  940. return u.Update(func(s *AgentUpsert) {
  941. s.SetUpdatedAt(v)
  942. })
  943. }
  944. // UpdateUpdatedAt sets the "updated_at" field to the value that was provided on create.
  945. func (u *AgentUpsertBulk) UpdateUpdatedAt() *AgentUpsertBulk {
  946. return u.Update(func(s *AgentUpsert) {
  947. s.UpdateUpdatedAt()
  948. })
  949. }
  950. // SetDeletedAt sets the "deleted_at" field.
  951. func (u *AgentUpsertBulk) SetDeletedAt(v time.Time) *AgentUpsertBulk {
  952. return u.Update(func(s *AgentUpsert) {
  953. s.SetDeletedAt(v)
  954. })
  955. }
  956. // UpdateDeletedAt sets the "deleted_at" field to the value that was provided on create.
  957. func (u *AgentUpsertBulk) UpdateDeletedAt() *AgentUpsertBulk {
  958. return u.Update(func(s *AgentUpsert) {
  959. s.UpdateDeletedAt()
  960. })
  961. }
  962. // ClearDeletedAt clears the value of the "deleted_at" field.
  963. func (u *AgentUpsertBulk) ClearDeletedAt() *AgentUpsertBulk {
  964. return u.Update(func(s *AgentUpsert) {
  965. s.ClearDeletedAt()
  966. })
  967. }
  968. // SetName sets the "name" field.
  969. func (u *AgentUpsertBulk) SetName(v string) *AgentUpsertBulk {
  970. return u.Update(func(s *AgentUpsert) {
  971. s.SetName(v)
  972. })
  973. }
  974. // UpdateName sets the "name" field to the value that was provided on create.
  975. func (u *AgentUpsertBulk) UpdateName() *AgentUpsertBulk {
  976. return u.Update(func(s *AgentUpsert) {
  977. s.UpdateName()
  978. })
  979. }
  980. // SetRole sets the "role" field.
  981. func (u *AgentUpsertBulk) SetRole(v string) *AgentUpsertBulk {
  982. return u.Update(func(s *AgentUpsert) {
  983. s.SetRole(v)
  984. })
  985. }
  986. // UpdateRole sets the "role" field to the value that was provided on create.
  987. func (u *AgentUpsertBulk) UpdateRole() *AgentUpsertBulk {
  988. return u.Update(func(s *AgentUpsert) {
  989. s.UpdateRole()
  990. })
  991. }
  992. // SetStatus sets the "status" field.
  993. func (u *AgentUpsertBulk) SetStatus(v int) *AgentUpsertBulk {
  994. return u.Update(func(s *AgentUpsert) {
  995. s.SetStatus(v)
  996. })
  997. }
  998. // AddStatus adds v to the "status" field.
  999. func (u *AgentUpsertBulk) AddStatus(v int) *AgentUpsertBulk {
  1000. return u.Update(func(s *AgentUpsert) {
  1001. s.AddStatus(v)
  1002. })
  1003. }
  1004. // UpdateStatus sets the "status" field to the value that was provided on create.
  1005. func (u *AgentUpsertBulk) UpdateStatus() *AgentUpsertBulk {
  1006. return u.Update(func(s *AgentUpsert) {
  1007. s.UpdateStatus()
  1008. })
  1009. }
  1010. // ClearStatus clears the value of the "status" field.
  1011. func (u *AgentUpsertBulk) ClearStatus() *AgentUpsertBulk {
  1012. return u.Update(func(s *AgentUpsert) {
  1013. s.ClearStatus()
  1014. })
  1015. }
  1016. // SetBackground sets the "background" field.
  1017. func (u *AgentUpsertBulk) SetBackground(v string) *AgentUpsertBulk {
  1018. return u.Update(func(s *AgentUpsert) {
  1019. s.SetBackground(v)
  1020. })
  1021. }
  1022. // UpdateBackground sets the "background" field to the value that was provided on create.
  1023. func (u *AgentUpsertBulk) UpdateBackground() *AgentUpsertBulk {
  1024. return u.Update(func(s *AgentUpsert) {
  1025. s.UpdateBackground()
  1026. })
  1027. }
  1028. // ClearBackground clears the value of the "background" field.
  1029. func (u *AgentUpsertBulk) ClearBackground() *AgentUpsertBulk {
  1030. return u.Update(func(s *AgentUpsert) {
  1031. s.ClearBackground()
  1032. })
  1033. }
  1034. // SetExamples sets the "examples" field.
  1035. func (u *AgentUpsertBulk) SetExamples(v string) *AgentUpsertBulk {
  1036. return u.Update(func(s *AgentUpsert) {
  1037. s.SetExamples(v)
  1038. })
  1039. }
  1040. // UpdateExamples sets the "examples" field to the value that was provided on create.
  1041. func (u *AgentUpsertBulk) UpdateExamples() *AgentUpsertBulk {
  1042. return u.Update(func(s *AgentUpsert) {
  1043. s.UpdateExamples()
  1044. })
  1045. }
  1046. // ClearExamples clears the value of the "examples" field.
  1047. func (u *AgentUpsertBulk) ClearExamples() *AgentUpsertBulk {
  1048. return u.Update(func(s *AgentUpsert) {
  1049. s.ClearExamples()
  1050. })
  1051. }
  1052. // SetOrganizationID sets the "organization_id" field.
  1053. func (u *AgentUpsertBulk) SetOrganizationID(v uint64) *AgentUpsertBulk {
  1054. return u.Update(func(s *AgentUpsert) {
  1055. s.SetOrganizationID(v)
  1056. })
  1057. }
  1058. // AddOrganizationID adds v to the "organization_id" field.
  1059. func (u *AgentUpsertBulk) AddOrganizationID(v uint64) *AgentUpsertBulk {
  1060. return u.Update(func(s *AgentUpsert) {
  1061. s.AddOrganizationID(v)
  1062. })
  1063. }
  1064. // UpdateOrganizationID sets the "organization_id" field to the value that was provided on create.
  1065. func (u *AgentUpsertBulk) UpdateOrganizationID() *AgentUpsertBulk {
  1066. return u.Update(func(s *AgentUpsert) {
  1067. s.UpdateOrganizationID()
  1068. })
  1069. }
  1070. // SetDatasetID sets the "dataset_id" field.
  1071. func (u *AgentUpsertBulk) SetDatasetID(v string) *AgentUpsertBulk {
  1072. return u.Update(func(s *AgentUpsert) {
  1073. s.SetDatasetID(v)
  1074. })
  1075. }
  1076. // UpdateDatasetID sets the "dataset_id" field to the value that was provided on create.
  1077. func (u *AgentUpsertBulk) UpdateDatasetID() *AgentUpsertBulk {
  1078. return u.Update(func(s *AgentUpsert) {
  1079. s.UpdateDatasetID()
  1080. })
  1081. }
  1082. // SetCollectionID sets the "collection_id" field.
  1083. func (u *AgentUpsertBulk) SetCollectionID(v string) *AgentUpsertBulk {
  1084. return u.Update(func(s *AgentUpsert) {
  1085. s.SetCollectionID(v)
  1086. })
  1087. }
  1088. // UpdateCollectionID sets the "collection_id" field to the value that was provided on create.
  1089. func (u *AgentUpsertBulk) UpdateCollectionID() *AgentUpsertBulk {
  1090. return u.Update(func(s *AgentUpsert) {
  1091. s.UpdateCollectionID()
  1092. })
  1093. }
  1094. // Exec executes the query.
  1095. func (u *AgentUpsertBulk) Exec(ctx context.Context) error {
  1096. if u.create.err != nil {
  1097. return u.create.err
  1098. }
  1099. for i, b := range u.create.builders {
  1100. if len(b.conflict) != 0 {
  1101. return fmt.Errorf("ent: OnConflict was set for builder %d. Set it on the AgentCreateBulk instead", i)
  1102. }
  1103. }
  1104. if len(u.create.conflict) == 0 {
  1105. return errors.New("ent: missing options for AgentCreateBulk.OnConflict")
  1106. }
  1107. return u.create.Exec(ctx)
  1108. }
  1109. // ExecX is like Exec, but panics if an error occurs.
  1110. func (u *AgentUpsertBulk) ExecX(ctx context.Context) {
  1111. if err := u.create.Exec(ctx); err != nil {
  1112. panic(err)
  1113. }
  1114. }