mutation.go 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447
  1. // Code generated by entc, DO NOT EDIT.
  2. package ent
  3. import (
  4. "context"
  5. "errors"
  6. "fmt"
  7. "sync"
  8. "time"
  9. "code.osinet.fr/fgm/go__ent_demo/ent/car"
  10. "code.osinet.fr/fgm/go__ent_demo/ent/group"
  11. "code.osinet.fr/fgm/go__ent_demo/ent/predicate"
  12. "code.osinet.fr/fgm/go__ent_demo/ent/user"
  13. "entgo.io/ent"
  14. )
  15. const (
  16. // Operation types.
  17. OpCreate = ent.OpCreate
  18. OpDelete = ent.OpDelete
  19. OpDeleteOne = ent.OpDeleteOne
  20. OpUpdate = ent.OpUpdate
  21. OpUpdateOne = ent.OpUpdateOne
  22. // Node types.
  23. TypeCar = "Car"
  24. TypeGroup = "Group"
  25. TypeUser = "User"
  26. )
  27. // CarMutation represents an operation that mutates the Car nodes in the graph.
  28. type CarMutation struct {
  29. config
  30. op Op
  31. typ string
  32. id *int
  33. model *string
  34. registered_at *time.Time
  35. clearedFields map[string]struct{}
  36. owner *int
  37. clearedowner bool
  38. done bool
  39. oldValue func(context.Context) (*Car, error)
  40. predicates []predicate.Car
  41. }
  42. var _ ent.Mutation = (*CarMutation)(nil)
  43. // carOption allows management of the mutation configuration using functional options.
  44. type carOption func(*CarMutation)
  45. // newCarMutation creates new mutation for the Car entity.
  46. func newCarMutation(c config, op Op, opts ...carOption) *CarMutation {
  47. m := &CarMutation{
  48. config: c,
  49. op: op,
  50. typ: TypeCar,
  51. clearedFields: make(map[string]struct{}),
  52. }
  53. for _, opt := range opts {
  54. opt(m)
  55. }
  56. return m
  57. }
  58. // withCarID sets the ID field of the mutation.
  59. func withCarID(id int) carOption {
  60. return func(m *CarMutation) {
  61. var (
  62. err error
  63. once sync.Once
  64. value *Car
  65. )
  66. m.oldValue = func(ctx context.Context) (*Car, error) {
  67. once.Do(func() {
  68. if m.done {
  69. err = errors.New("querying old values post mutation is not allowed")
  70. } else {
  71. value, err = m.Client().Car.Get(ctx, id)
  72. }
  73. })
  74. return value, err
  75. }
  76. m.id = &id
  77. }
  78. }
  79. // withCar sets the old Car of the mutation.
  80. func withCar(node *Car) carOption {
  81. return func(m *CarMutation) {
  82. m.oldValue = func(context.Context) (*Car, error) {
  83. return node, nil
  84. }
  85. m.id = &node.ID
  86. }
  87. }
  88. // Client returns a new `ent.Client` from the mutation. If the mutation was
  89. // executed in a transaction (ent.Tx), a transactional client is returned.
  90. func (m CarMutation) Client() *Client {
  91. client := &Client{config: m.config}
  92. client.init()
  93. return client
  94. }
  95. // Tx returns an `ent.Tx` for mutations that were executed in transactions;
  96. // it returns an error otherwise.
  97. func (m CarMutation) Tx() (*Tx, error) {
  98. if _, ok := m.driver.(*txDriver); !ok {
  99. return nil, errors.New("ent: mutation is not running in a transaction")
  100. }
  101. tx := &Tx{config: m.config}
  102. tx.init()
  103. return tx, nil
  104. }
  105. // ID returns the ID value in the mutation. Note that the ID is only available
  106. // if it was provided to the builder or after it was returned from the database.
  107. func (m *CarMutation) ID() (id int, exists bool) {
  108. if m.id == nil {
  109. return
  110. }
  111. return *m.id, true
  112. }
  113. // IDs queries the database and returns the entity ids that match the mutation's predicate.
  114. // That means, if the mutation is applied within a transaction with an isolation level such
  115. // as sql.LevelSerializable, the returned ids match the ids of the rows that will be updated
  116. // or updated by the mutation.
  117. func (m *CarMutation) IDs(ctx context.Context) ([]int, error) {
  118. switch {
  119. case m.op.Is(OpUpdateOne | OpDeleteOne):
  120. id, exists := m.ID()
  121. if exists {
  122. return []int{id}, nil
  123. }
  124. fallthrough
  125. case m.op.Is(OpUpdate | OpDelete):
  126. return m.Client().Car.Query().Where(m.predicates...).IDs(ctx)
  127. default:
  128. return nil, fmt.Errorf("IDs is not allowed on %s operations", m.op)
  129. }
  130. }
  131. // SetModel sets the "model" field.
  132. func (m *CarMutation) SetModel(s string) {
  133. m.model = &s
  134. }
  135. // Model returns the value of the "model" field in the mutation.
  136. func (m *CarMutation) Model() (r string, exists bool) {
  137. v := m.model
  138. if v == nil {
  139. return
  140. }
  141. return *v, true
  142. }
  143. // OldModel returns the old "model" field's value of the Car entity.
  144. // If the Car object wasn't provided to the builder, the object is fetched from the database.
  145. // An error is returned if the mutation operation is not UpdateOne, or the database query fails.
  146. func (m *CarMutation) OldModel(ctx context.Context) (v string, err error) {
  147. if !m.op.Is(OpUpdateOne) {
  148. return v, errors.New("OldModel is only allowed on UpdateOne operations")
  149. }
  150. if m.id == nil || m.oldValue == nil {
  151. return v, errors.New("OldModel requires an ID field in the mutation")
  152. }
  153. oldValue, err := m.oldValue(ctx)
  154. if err != nil {
  155. return v, fmt.Errorf("querying old value for OldModel: %w", err)
  156. }
  157. return oldValue.Model, nil
  158. }
  159. // ResetModel resets all changes to the "model" field.
  160. func (m *CarMutation) ResetModel() {
  161. m.model = nil
  162. }
  163. // SetRegisteredAt sets the "registered_at" field.
  164. func (m *CarMutation) SetRegisteredAt(t time.Time) {
  165. m.registered_at = &t
  166. }
  167. // RegisteredAt returns the value of the "registered_at" field in the mutation.
  168. func (m *CarMutation) RegisteredAt() (r time.Time, exists bool) {
  169. v := m.registered_at
  170. if v == nil {
  171. return
  172. }
  173. return *v, true
  174. }
  175. // OldRegisteredAt returns the old "registered_at" field's value of the Car entity.
  176. // If the Car object wasn't provided to the builder, the object is fetched from the database.
  177. // An error is returned if the mutation operation is not UpdateOne, or the database query fails.
  178. func (m *CarMutation) OldRegisteredAt(ctx context.Context) (v time.Time, err error) {
  179. if !m.op.Is(OpUpdateOne) {
  180. return v, errors.New("OldRegisteredAt is only allowed on UpdateOne operations")
  181. }
  182. if m.id == nil || m.oldValue == nil {
  183. return v, errors.New("OldRegisteredAt requires an ID field in the mutation")
  184. }
  185. oldValue, err := m.oldValue(ctx)
  186. if err != nil {
  187. return v, fmt.Errorf("querying old value for OldRegisteredAt: %w", err)
  188. }
  189. return oldValue.RegisteredAt, nil
  190. }
  191. // ResetRegisteredAt resets all changes to the "registered_at" field.
  192. func (m *CarMutation) ResetRegisteredAt() {
  193. m.registered_at = nil
  194. }
  195. // SetOwnerID sets the "owner" edge to the User entity by id.
  196. func (m *CarMutation) SetOwnerID(id int) {
  197. m.owner = &id
  198. }
  199. // ClearOwner clears the "owner" edge to the User entity.
  200. func (m *CarMutation) ClearOwner() {
  201. m.clearedowner = true
  202. }
  203. // OwnerCleared reports if the "owner" edge to the User entity was cleared.
  204. func (m *CarMutation) OwnerCleared() bool {
  205. return m.clearedowner
  206. }
  207. // OwnerID returns the "owner" edge ID in the mutation.
  208. func (m *CarMutation) OwnerID() (id int, exists bool) {
  209. if m.owner != nil {
  210. return *m.owner, true
  211. }
  212. return
  213. }
  214. // OwnerIDs returns the "owner" edge IDs in the mutation.
  215. // Note that IDs always returns len(IDs) <= 1 for unique edges, and you should use
  216. // OwnerID instead. It exists only for internal usage by the builders.
  217. func (m *CarMutation) OwnerIDs() (ids []int) {
  218. if id := m.owner; id != nil {
  219. ids = append(ids, *id)
  220. }
  221. return
  222. }
  223. // ResetOwner resets all changes to the "owner" edge.
  224. func (m *CarMutation) ResetOwner() {
  225. m.owner = nil
  226. m.clearedowner = false
  227. }
  228. // Where appends a list predicates to the CarMutation builder.
  229. func (m *CarMutation) Where(ps ...predicate.Car) {
  230. m.predicates = append(m.predicates, ps...)
  231. }
  232. // Op returns the operation name.
  233. func (m *CarMutation) Op() Op {
  234. return m.op
  235. }
  236. // Type returns the node type of this mutation (Car).
  237. func (m *CarMutation) Type() string {
  238. return m.typ
  239. }
  240. // Fields returns all fields that were changed during this mutation. Note that in
  241. // order to get all numeric fields that were incremented/decremented, call
  242. // AddedFields().
  243. func (m *CarMutation) Fields() []string {
  244. fields := make([]string, 0, 2)
  245. if m.model != nil {
  246. fields = append(fields, car.FieldModel)
  247. }
  248. if m.registered_at != nil {
  249. fields = append(fields, car.FieldRegisteredAt)
  250. }
  251. return fields
  252. }
  253. // Field returns the value of a field with the given name. The second boolean
  254. // return value indicates that this field was not set, or was not defined in the
  255. // schema.
  256. func (m *CarMutation) Field(name string) (ent.Value, bool) {
  257. switch name {
  258. case car.FieldModel:
  259. return m.Model()
  260. case car.FieldRegisteredAt:
  261. return m.RegisteredAt()
  262. }
  263. return nil, false
  264. }
  265. // OldField returns the old value of the field from the database. An error is
  266. // returned if the mutation operation is not UpdateOne, or the query to the
  267. // database failed.
  268. func (m *CarMutation) OldField(ctx context.Context, name string) (ent.Value, error) {
  269. switch name {
  270. case car.FieldModel:
  271. return m.OldModel(ctx)
  272. case car.FieldRegisteredAt:
  273. return m.OldRegisteredAt(ctx)
  274. }
  275. return nil, fmt.Errorf("unknown Car field %s", name)
  276. }
  277. // SetField sets the value of a field with the given name. It returns an error if
  278. // the field is not defined in the schema, or if the type mismatched the field
  279. // type.
  280. func (m *CarMutation) SetField(name string, value ent.Value) error {
  281. switch name {
  282. case car.FieldModel:
  283. v, ok := value.(string)
  284. if !ok {
  285. return fmt.Errorf("unexpected type %T for field %s", value, name)
  286. }
  287. m.SetModel(v)
  288. return nil
  289. case car.FieldRegisteredAt:
  290. v, ok := value.(time.Time)
  291. if !ok {
  292. return fmt.Errorf("unexpected type %T for field %s", value, name)
  293. }
  294. m.SetRegisteredAt(v)
  295. return nil
  296. }
  297. return fmt.Errorf("unknown Car field %s", name)
  298. }
  299. // AddedFields returns all numeric fields that were incremented/decremented during
  300. // this mutation.
  301. func (m *CarMutation) AddedFields() []string {
  302. return nil
  303. }
  304. // AddedField returns the numeric value that was incremented/decremented on a field
  305. // with the given name. The second boolean return value indicates that this field
  306. // was not set, or was not defined in the schema.
  307. func (m *CarMutation) AddedField(name string) (ent.Value, bool) {
  308. return nil, false
  309. }
  310. // AddField adds the value to the field with the given name. It returns an error if
  311. // the field is not defined in the schema, or if the type mismatched the field
  312. // type.
  313. func (m *CarMutation) AddField(name string, value ent.Value) error {
  314. switch name {
  315. }
  316. return fmt.Errorf("unknown Car numeric field %s", name)
  317. }
  318. // ClearedFields returns all nullable fields that were cleared during this
  319. // mutation.
  320. func (m *CarMutation) ClearedFields() []string {
  321. return nil
  322. }
  323. // FieldCleared returns a boolean indicating if a field with the given name was
  324. // cleared in this mutation.
  325. func (m *CarMutation) FieldCleared(name string) bool {
  326. _, ok := m.clearedFields[name]
  327. return ok
  328. }
  329. // ClearField clears the value of the field with the given name. It returns an
  330. // error if the field is not defined in the schema.
  331. func (m *CarMutation) ClearField(name string) error {
  332. return fmt.Errorf("unknown Car nullable field %s", name)
  333. }
  334. // ResetField resets all changes in the mutation for the field with the given name.
  335. // It returns an error if the field is not defined in the schema.
  336. func (m *CarMutation) ResetField(name string) error {
  337. switch name {
  338. case car.FieldModel:
  339. m.ResetModel()
  340. return nil
  341. case car.FieldRegisteredAt:
  342. m.ResetRegisteredAt()
  343. return nil
  344. }
  345. return fmt.Errorf("unknown Car field %s", name)
  346. }
  347. // AddedEdges returns all edge names that were set/added in this mutation.
  348. func (m *CarMutation) AddedEdges() []string {
  349. edges := make([]string, 0, 1)
  350. if m.owner != nil {
  351. edges = append(edges, car.EdgeOwner)
  352. }
  353. return edges
  354. }
  355. // AddedIDs returns all IDs (to other nodes) that were added for the given edge
  356. // name in this mutation.
  357. func (m *CarMutation) AddedIDs(name string) []ent.Value {
  358. switch name {
  359. case car.EdgeOwner:
  360. if id := m.owner; id != nil {
  361. return []ent.Value{*id}
  362. }
  363. }
  364. return nil
  365. }
  366. // RemovedEdges returns all edge names that were removed in this mutation.
  367. func (m *CarMutation) RemovedEdges() []string {
  368. edges := make([]string, 0, 1)
  369. return edges
  370. }
  371. // RemovedIDs returns all IDs (to other nodes) that were removed for the edge with
  372. // the given name in this mutation.
  373. func (m *CarMutation) RemovedIDs(name string) []ent.Value {
  374. switch name {
  375. }
  376. return nil
  377. }
  378. // ClearedEdges returns all edge names that were cleared in this mutation.
  379. func (m *CarMutation) ClearedEdges() []string {
  380. edges := make([]string, 0, 1)
  381. if m.clearedowner {
  382. edges = append(edges, car.EdgeOwner)
  383. }
  384. return edges
  385. }
  386. // EdgeCleared returns a boolean which indicates if the edge with the given name
  387. // was cleared in this mutation.
  388. func (m *CarMutation) EdgeCleared(name string) bool {
  389. switch name {
  390. case car.EdgeOwner:
  391. return m.clearedowner
  392. }
  393. return false
  394. }
  395. // ClearEdge clears the value of the edge with the given name. It returns an error
  396. // if that edge is not defined in the schema.
  397. func (m *CarMutation) ClearEdge(name string) error {
  398. switch name {
  399. case car.EdgeOwner:
  400. m.ClearOwner()
  401. return nil
  402. }
  403. return fmt.Errorf("unknown Car unique edge %s", name)
  404. }
  405. // ResetEdge resets all changes to the edge with the given name in this mutation.
  406. // It returns an error if the edge is not defined in the schema.
  407. func (m *CarMutation) ResetEdge(name string) error {
  408. switch name {
  409. case car.EdgeOwner:
  410. m.ResetOwner()
  411. return nil
  412. }
  413. return fmt.Errorf("unknown Car edge %s", name)
  414. }
  415. // GroupMutation represents an operation that mutates the Group nodes in the graph.
  416. type GroupMutation struct {
  417. config
  418. op Op
  419. typ string
  420. id *int
  421. name *string
  422. clearedFields map[string]struct{}
  423. users map[int]struct{}
  424. removedusers map[int]struct{}
  425. clearedusers bool
  426. done bool
  427. oldValue func(context.Context) (*Group, error)
  428. predicates []predicate.Group
  429. }
  430. var _ ent.Mutation = (*GroupMutation)(nil)
  431. // groupOption allows management of the mutation configuration using functional options.
  432. type groupOption func(*GroupMutation)
  433. // newGroupMutation creates new mutation for the Group entity.
  434. func newGroupMutation(c config, op Op, opts ...groupOption) *GroupMutation {
  435. m := &GroupMutation{
  436. config: c,
  437. op: op,
  438. typ: TypeGroup,
  439. clearedFields: make(map[string]struct{}),
  440. }
  441. for _, opt := range opts {
  442. opt(m)
  443. }
  444. return m
  445. }
  446. // withGroupID sets the ID field of the mutation.
  447. func withGroupID(id int) groupOption {
  448. return func(m *GroupMutation) {
  449. var (
  450. err error
  451. once sync.Once
  452. value *Group
  453. )
  454. m.oldValue = func(ctx context.Context) (*Group, error) {
  455. once.Do(func() {
  456. if m.done {
  457. err = errors.New("querying old values post mutation is not allowed")
  458. } else {
  459. value, err = m.Client().Group.Get(ctx, id)
  460. }
  461. })
  462. return value, err
  463. }
  464. m.id = &id
  465. }
  466. }
  467. // withGroup sets the old Group of the mutation.
  468. func withGroup(node *Group) groupOption {
  469. return func(m *GroupMutation) {
  470. m.oldValue = func(context.Context) (*Group, error) {
  471. return node, nil
  472. }
  473. m.id = &node.ID
  474. }
  475. }
  476. // Client returns a new `ent.Client` from the mutation. If the mutation was
  477. // executed in a transaction (ent.Tx), a transactional client is returned.
  478. func (m GroupMutation) Client() *Client {
  479. client := &Client{config: m.config}
  480. client.init()
  481. return client
  482. }
  483. // Tx returns an `ent.Tx` for mutations that were executed in transactions;
  484. // it returns an error otherwise.
  485. func (m GroupMutation) Tx() (*Tx, error) {
  486. if _, ok := m.driver.(*txDriver); !ok {
  487. return nil, errors.New("ent: mutation is not running in a transaction")
  488. }
  489. tx := &Tx{config: m.config}
  490. tx.init()
  491. return tx, nil
  492. }
  493. // ID returns the ID value in the mutation. Note that the ID is only available
  494. // if it was provided to the builder or after it was returned from the database.
  495. func (m *GroupMutation) ID() (id int, exists bool) {
  496. if m.id == nil {
  497. return
  498. }
  499. return *m.id, true
  500. }
  501. // IDs queries the database and returns the entity ids that match the mutation's predicate.
  502. // That means, if the mutation is applied within a transaction with an isolation level such
  503. // as sql.LevelSerializable, the returned ids match the ids of the rows that will be updated
  504. // or updated by the mutation.
  505. func (m *GroupMutation) IDs(ctx context.Context) ([]int, error) {
  506. switch {
  507. case m.op.Is(OpUpdateOne | OpDeleteOne):
  508. id, exists := m.ID()
  509. if exists {
  510. return []int{id}, nil
  511. }
  512. fallthrough
  513. case m.op.Is(OpUpdate | OpDelete):
  514. return m.Client().Group.Query().Where(m.predicates...).IDs(ctx)
  515. default:
  516. return nil, fmt.Errorf("IDs is not allowed on %s operations", m.op)
  517. }
  518. }
  519. // SetName sets the "name" field.
  520. func (m *GroupMutation) SetName(s string) {
  521. m.name = &s
  522. }
  523. // Name returns the value of the "name" field in the mutation.
  524. func (m *GroupMutation) Name() (r string, exists bool) {
  525. v := m.name
  526. if v == nil {
  527. return
  528. }
  529. return *v, true
  530. }
  531. // OldName returns the old "name" field's value of the Group entity.
  532. // If the Group object wasn't provided to the builder, the object is fetched from the database.
  533. // An error is returned if the mutation operation is not UpdateOne, or the database query fails.
  534. func (m *GroupMutation) OldName(ctx context.Context) (v string, err error) {
  535. if !m.op.Is(OpUpdateOne) {
  536. return v, errors.New("OldName is only allowed on UpdateOne operations")
  537. }
  538. if m.id == nil || m.oldValue == nil {
  539. return v, errors.New("OldName requires an ID field in the mutation")
  540. }
  541. oldValue, err := m.oldValue(ctx)
  542. if err != nil {
  543. return v, fmt.Errorf("querying old value for OldName: %w", err)
  544. }
  545. return oldValue.Name, nil
  546. }
  547. // ResetName resets all changes to the "name" field.
  548. func (m *GroupMutation) ResetName() {
  549. m.name = nil
  550. }
  551. // AddUserIDs adds the "users" edge to the User entity by ids.
  552. func (m *GroupMutation) AddUserIDs(ids ...int) {
  553. if m.users == nil {
  554. m.users = make(map[int]struct{})
  555. }
  556. for i := range ids {
  557. m.users[ids[i]] = struct{}{}
  558. }
  559. }
  560. // ClearUsers clears the "users" edge to the User entity.
  561. func (m *GroupMutation) ClearUsers() {
  562. m.clearedusers = true
  563. }
  564. // UsersCleared reports if the "users" edge to the User entity was cleared.
  565. func (m *GroupMutation) UsersCleared() bool {
  566. return m.clearedusers
  567. }
  568. // RemoveUserIDs removes the "users" edge to the User entity by IDs.
  569. func (m *GroupMutation) RemoveUserIDs(ids ...int) {
  570. if m.removedusers == nil {
  571. m.removedusers = make(map[int]struct{})
  572. }
  573. for i := range ids {
  574. delete(m.users, ids[i])
  575. m.removedusers[ids[i]] = struct{}{}
  576. }
  577. }
  578. // RemovedUsers returns the removed IDs of the "users" edge to the User entity.
  579. func (m *GroupMutation) RemovedUsersIDs() (ids []int) {
  580. for id := range m.removedusers {
  581. ids = append(ids, id)
  582. }
  583. return
  584. }
  585. // UsersIDs returns the "users" edge IDs in the mutation.
  586. func (m *GroupMutation) UsersIDs() (ids []int) {
  587. for id := range m.users {
  588. ids = append(ids, id)
  589. }
  590. return
  591. }
  592. // ResetUsers resets all changes to the "users" edge.
  593. func (m *GroupMutation) ResetUsers() {
  594. m.users = nil
  595. m.clearedusers = false
  596. m.removedusers = nil
  597. }
  598. // Where appends a list predicates to the GroupMutation builder.
  599. func (m *GroupMutation) Where(ps ...predicate.Group) {
  600. m.predicates = append(m.predicates, ps...)
  601. }
  602. // Op returns the operation name.
  603. func (m *GroupMutation) Op() Op {
  604. return m.op
  605. }
  606. // Type returns the node type of this mutation (Group).
  607. func (m *GroupMutation) Type() string {
  608. return m.typ
  609. }
  610. // Fields returns all fields that were changed during this mutation. Note that in
  611. // order to get all numeric fields that were incremented/decremented, call
  612. // AddedFields().
  613. func (m *GroupMutation) Fields() []string {
  614. fields := make([]string, 0, 1)
  615. if m.name != nil {
  616. fields = append(fields, group.FieldName)
  617. }
  618. return fields
  619. }
  620. // Field returns the value of a field with the given name. The second boolean
  621. // return value indicates that this field was not set, or was not defined in the
  622. // schema.
  623. func (m *GroupMutation) Field(name string) (ent.Value, bool) {
  624. switch name {
  625. case group.FieldName:
  626. return m.Name()
  627. }
  628. return nil, false
  629. }
  630. // OldField returns the old value of the field from the database. An error is
  631. // returned if the mutation operation is not UpdateOne, or the query to the
  632. // database failed.
  633. func (m *GroupMutation) OldField(ctx context.Context, name string) (ent.Value, error) {
  634. switch name {
  635. case group.FieldName:
  636. return m.OldName(ctx)
  637. }
  638. return nil, fmt.Errorf("unknown Group field %s", name)
  639. }
  640. // SetField sets the value of a field with the given name. It returns an error if
  641. // the field is not defined in the schema, or if the type mismatched the field
  642. // type.
  643. func (m *GroupMutation) SetField(name string, value ent.Value) error {
  644. switch name {
  645. case group.FieldName:
  646. v, ok := value.(string)
  647. if !ok {
  648. return fmt.Errorf("unexpected type %T for field %s", value, name)
  649. }
  650. m.SetName(v)
  651. return nil
  652. }
  653. return fmt.Errorf("unknown Group field %s", name)
  654. }
  655. // AddedFields returns all numeric fields that were incremented/decremented during
  656. // this mutation.
  657. func (m *GroupMutation) AddedFields() []string {
  658. return nil
  659. }
  660. // AddedField returns the numeric value that was incremented/decremented on a field
  661. // with the given name. The second boolean return value indicates that this field
  662. // was not set, or was not defined in the schema.
  663. func (m *GroupMutation) AddedField(name string) (ent.Value, bool) {
  664. return nil, false
  665. }
  666. // AddField adds the value to the field with the given name. It returns an error if
  667. // the field is not defined in the schema, or if the type mismatched the field
  668. // type.
  669. func (m *GroupMutation) AddField(name string, value ent.Value) error {
  670. switch name {
  671. }
  672. return fmt.Errorf("unknown Group numeric field %s", name)
  673. }
  674. // ClearedFields returns all nullable fields that were cleared during this
  675. // mutation.
  676. func (m *GroupMutation) ClearedFields() []string {
  677. return nil
  678. }
  679. // FieldCleared returns a boolean indicating if a field with the given name was
  680. // cleared in this mutation.
  681. func (m *GroupMutation) FieldCleared(name string) bool {
  682. _, ok := m.clearedFields[name]
  683. return ok
  684. }
  685. // ClearField clears the value of the field with the given name. It returns an
  686. // error if the field is not defined in the schema.
  687. func (m *GroupMutation) ClearField(name string) error {
  688. return fmt.Errorf("unknown Group nullable field %s", name)
  689. }
  690. // ResetField resets all changes in the mutation for the field with the given name.
  691. // It returns an error if the field is not defined in the schema.
  692. func (m *GroupMutation) ResetField(name string) error {
  693. switch name {
  694. case group.FieldName:
  695. m.ResetName()
  696. return nil
  697. }
  698. return fmt.Errorf("unknown Group field %s", name)
  699. }
  700. // AddedEdges returns all edge names that were set/added in this mutation.
  701. func (m *GroupMutation) AddedEdges() []string {
  702. edges := make([]string, 0, 1)
  703. if m.users != nil {
  704. edges = append(edges, group.EdgeUsers)
  705. }
  706. return edges
  707. }
  708. // AddedIDs returns all IDs (to other nodes) that were added for the given edge
  709. // name in this mutation.
  710. func (m *GroupMutation) AddedIDs(name string) []ent.Value {
  711. switch name {
  712. case group.EdgeUsers:
  713. ids := make([]ent.Value, 0, len(m.users))
  714. for id := range m.users {
  715. ids = append(ids, id)
  716. }
  717. return ids
  718. }
  719. return nil
  720. }
  721. // RemovedEdges returns all edge names that were removed in this mutation.
  722. func (m *GroupMutation) RemovedEdges() []string {
  723. edges := make([]string, 0, 1)
  724. if m.removedusers != nil {
  725. edges = append(edges, group.EdgeUsers)
  726. }
  727. return edges
  728. }
  729. // RemovedIDs returns all IDs (to other nodes) that were removed for the edge with
  730. // the given name in this mutation.
  731. func (m *GroupMutation) RemovedIDs(name string) []ent.Value {
  732. switch name {
  733. case group.EdgeUsers:
  734. ids := make([]ent.Value, 0, len(m.removedusers))
  735. for id := range m.removedusers {
  736. ids = append(ids, id)
  737. }
  738. return ids
  739. }
  740. return nil
  741. }
  742. // ClearedEdges returns all edge names that were cleared in this mutation.
  743. func (m *GroupMutation) ClearedEdges() []string {
  744. edges := make([]string, 0, 1)
  745. if m.clearedusers {
  746. edges = append(edges, group.EdgeUsers)
  747. }
  748. return edges
  749. }
  750. // EdgeCleared returns a boolean which indicates if the edge with the given name
  751. // was cleared in this mutation.
  752. func (m *GroupMutation) EdgeCleared(name string) bool {
  753. switch name {
  754. case group.EdgeUsers:
  755. return m.clearedusers
  756. }
  757. return false
  758. }
  759. // ClearEdge clears the value of the edge with the given name. It returns an error
  760. // if that edge is not defined in the schema.
  761. func (m *GroupMutation) ClearEdge(name string) error {
  762. switch name {
  763. }
  764. return fmt.Errorf("unknown Group unique edge %s", name)
  765. }
  766. // ResetEdge resets all changes to the edge with the given name in this mutation.
  767. // It returns an error if the edge is not defined in the schema.
  768. func (m *GroupMutation) ResetEdge(name string) error {
  769. switch name {
  770. case group.EdgeUsers:
  771. m.ResetUsers()
  772. return nil
  773. }
  774. return fmt.Errorf("unknown Group edge %s", name)
  775. }
  776. // UserMutation represents an operation that mutates the User nodes in the graph.
  777. type UserMutation struct {
  778. config
  779. op Op
  780. typ string
  781. id *int
  782. age *int
  783. addage *int
  784. name *string
  785. clearedFields map[string]struct{}
  786. cars map[int]struct{}
  787. removedcars map[int]struct{}
  788. clearedcars bool
  789. groups map[int]struct{}
  790. removedgroups map[int]struct{}
  791. clearedgroups bool
  792. done bool
  793. oldValue func(context.Context) (*User, error)
  794. predicates []predicate.User
  795. }
  796. var _ ent.Mutation = (*UserMutation)(nil)
  797. // userOption allows management of the mutation configuration using functional options.
  798. type userOption func(*UserMutation)
  799. // newUserMutation creates new mutation for the User entity.
  800. func newUserMutation(c config, op Op, opts ...userOption) *UserMutation {
  801. m := &UserMutation{
  802. config: c,
  803. op: op,
  804. typ: TypeUser,
  805. clearedFields: make(map[string]struct{}),
  806. }
  807. for _, opt := range opts {
  808. opt(m)
  809. }
  810. return m
  811. }
  812. // withUserID sets the ID field of the mutation.
  813. func withUserID(id int) userOption {
  814. return func(m *UserMutation) {
  815. var (
  816. err error
  817. once sync.Once
  818. value *User
  819. )
  820. m.oldValue = func(ctx context.Context) (*User, error) {
  821. once.Do(func() {
  822. if m.done {
  823. err = errors.New("querying old values post mutation is not allowed")
  824. } else {
  825. value, err = m.Client().User.Get(ctx, id)
  826. }
  827. })
  828. return value, err
  829. }
  830. m.id = &id
  831. }
  832. }
  833. // withUser sets the old User of the mutation.
  834. func withUser(node *User) userOption {
  835. return func(m *UserMutation) {
  836. m.oldValue = func(context.Context) (*User, error) {
  837. return node, nil
  838. }
  839. m.id = &node.ID
  840. }
  841. }
  842. // Client returns a new `ent.Client` from the mutation. If the mutation was
  843. // executed in a transaction (ent.Tx), a transactional client is returned.
  844. func (m UserMutation) Client() *Client {
  845. client := &Client{config: m.config}
  846. client.init()
  847. return client
  848. }
  849. // Tx returns an `ent.Tx` for mutations that were executed in transactions;
  850. // it returns an error otherwise.
  851. func (m UserMutation) Tx() (*Tx, error) {
  852. if _, ok := m.driver.(*txDriver); !ok {
  853. return nil, errors.New("ent: mutation is not running in a transaction")
  854. }
  855. tx := &Tx{config: m.config}
  856. tx.init()
  857. return tx, nil
  858. }
  859. // ID returns the ID value in the mutation. Note that the ID is only available
  860. // if it was provided to the builder or after it was returned from the database.
  861. func (m *UserMutation) ID() (id int, exists bool) {
  862. if m.id == nil {
  863. return
  864. }
  865. return *m.id, true
  866. }
  867. // IDs queries the database and returns the entity ids that match the mutation's predicate.
  868. // That means, if the mutation is applied within a transaction with an isolation level such
  869. // as sql.LevelSerializable, the returned ids match the ids of the rows that will be updated
  870. // or updated by the mutation.
  871. func (m *UserMutation) IDs(ctx context.Context) ([]int, error) {
  872. switch {
  873. case m.op.Is(OpUpdateOne | OpDeleteOne):
  874. id, exists := m.ID()
  875. if exists {
  876. return []int{id}, nil
  877. }
  878. fallthrough
  879. case m.op.Is(OpUpdate | OpDelete):
  880. return m.Client().User.Query().Where(m.predicates...).IDs(ctx)
  881. default:
  882. return nil, fmt.Errorf("IDs is not allowed on %s operations", m.op)
  883. }
  884. }
  885. // SetAge sets the "age" field.
  886. func (m *UserMutation) SetAge(i int) {
  887. m.age = &i
  888. m.addage = nil
  889. }
  890. // Age returns the value of the "age" field in the mutation.
  891. func (m *UserMutation) Age() (r int, exists bool) {
  892. v := m.age
  893. if v == nil {
  894. return
  895. }
  896. return *v, true
  897. }
  898. // OldAge returns the old "age" field's value of the User entity.
  899. // If the User object wasn't provided to the builder, the object is fetched from the database.
  900. // An error is returned if the mutation operation is not UpdateOne, or the database query fails.
  901. func (m *UserMutation) OldAge(ctx context.Context) (v int, err error) {
  902. if !m.op.Is(OpUpdateOne) {
  903. return v, errors.New("OldAge is only allowed on UpdateOne operations")
  904. }
  905. if m.id == nil || m.oldValue == nil {
  906. return v, errors.New("OldAge requires an ID field in the mutation")
  907. }
  908. oldValue, err := m.oldValue(ctx)
  909. if err != nil {
  910. return v, fmt.Errorf("querying old value for OldAge: %w", err)
  911. }
  912. return oldValue.Age, nil
  913. }
  914. // AddAge adds i to the "age" field.
  915. func (m *UserMutation) AddAge(i int) {
  916. if m.addage != nil {
  917. *m.addage += i
  918. } else {
  919. m.addage = &i
  920. }
  921. }
  922. // AddedAge returns the value that was added to the "age" field in this mutation.
  923. func (m *UserMutation) AddedAge() (r int, exists bool) {
  924. v := m.addage
  925. if v == nil {
  926. return
  927. }
  928. return *v, true
  929. }
  930. // ResetAge resets all changes to the "age" field.
  931. func (m *UserMutation) ResetAge() {
  932. m.age = nil
  933. m.addage = nil
  934. }
  935. // SetName sets the "name" field.
  936. func (m *UserMutation) SetName(s string) {
  937. m.name = &s
  938. }
  939. // Name returns the value of the "name" field in the mutation.
  940. func (m *UserMutation) Name() (r string, exists bool) {
  941. v := m.name
  942. if v == nil {
  943. return
  944. }
  945. return *v, true
  946. }
  947. // OldName returns the old "name" field's value of the User entity.
  948. // If the User object wasn't provided to the builder, the object is fetched from the database.
  949. // An error is returned if the mutation operation is not UpdateOne, or the database query fails.
  950. func (m *UserMutation) OldName(ctx context.Context) (v string, err error) {
  951. if !m.op.Is(OpUpdateOne) {
  952. return v, errors.New("OldName is only allowed on UpdateOne operations")
  953. }
  954. if m.id == nil || m.oldValue == nil {
  955. return v, errors.New("OldName requires an ID field in the mutation")
  956. }
  957. oldValue, err := m.oldValue(ctx)
  958. if err != nil {
  959. return v, fmt.Errorf("querying old value for OldName: %w", err)
  960. }
  961. return oldValue.Name, nil
  962. }
  963. // ResetName resets all changes to the "name" field.
  964. func (m *UserMutation) ResetName() {
  965. m.name = nil
  966. }
  967. // AddCarIDs adds the "cars" edge to the Car entity by ids.
  968. func (m *UserMutation) AddCarIDs(ids ...int) {
  969. if m.cars == nil {
  970. m.cars = make(map[int]struct{})
  971. }
  972. for i := range ids {
  973. m.cars[ids[i]] = struct{}{}
  974. }
  975. }
  976. // ClearCars clears the "cars" edge to the Car entity.
  977. func (m *UserMutation) ClearCars() {
  978. m.clearedcars = true
  979. }
  980. // CarsCleared reports if the "cars" edge to the Car entity was cleared.
  981. func (m *UserMutation) CarsCleared() bool {
  982. return m.clearedcars
  983. }
  984. // RemoveCarIDs removes the "cars" edge to the Car entity by IDs.
  985. func (m *UserMutation) RemoveCarIDs(ids ...int) {
  986. if m.removedcars == nil {
  987. m.removedcars = make(map[int]struct{})
  988. }
  989. for i := range ids {
  990. delete(m.cars, ids[i])
  991. m.removedcars[ids[i]] = struct{}{}
  992. }
  993. }
  994. // RemovedCars returns the removed IDs of the "cars" edge to the Car entity.
  995. func (m *UserMutation) RemovedCarsIDs() (ids []int) {
  996. for id := range m.removedcars {
  997. ids = append(ids, id)
  998. }
  999. return
  1000. }
  1001. // CarsIDs returns the "cars" edge IDs in the mutation.
  1002. func (m *UserMutation) CarsIDs() (ids []int) {
  1003. for id := range m.cars {
  1004. ids = append(ids, id)
  1005. }
  1006. return
  1007. }
  1008. // ResetCars resets all changes to the "cars" edge.
  1009. func (m *UserMutation) ResetCars() {
  1010. m.cars = nil
  1011. m.clearedcars = false
  1012. m.removedcars = nil
  1013. }
  1014. // AddGroupIDs adds the "groups" edge to the Group entity by ids.
  1015. func (m *UserMutation) AddGroupIDs(ids ...int) {
  1016. if m.groups == nil {
  1017. m.groups = make(map[int]struct{})
  1018. }
  1019. for i := range ids {
  1020. m.groups[ids[i]] = struct{}{}
  1021. }
  1022. }
  1023. // ClearGroups clears the "groups" edge to the Group entity.
  1024. func (m *UserMutation) ClearGroups() {
  1025. m.clearedgroups = true
  1026. }
  1027. // GroupsCleared reports if the "groups" edge to the Group entity was cleared.
  1028. func (m *UserMutation) GroupsCleared() bool {
  1029. return m.clearedgroups
  1030. }
  1031. // RemoveGroupIDs removes the "groups" edge to the Group entity by IDs.
  1032. func (m *UserMutation) RemoveGroupIDs(ids ...int) {
  1033. if m.removedgroups == nil {
  1034. m.removedgroups = make(map[int]struct{})
  1035. }
  1036. for i := range ids {
  1037. delete(m.groups, ids[i])
  1038. m.removedgroups[ids[i]] = struct{}{}
  1039. }
  1040. }
  1041. // RemovedGroups returns the removed IDs of the "groups" edge to the Group entity.
  1042. func (m *UserMutation) RemovedGroupsIDs() (ids []int) {
  1043. for id := range m.removedgroups {
  1044. ids = append(ids, id)
  1045. }
  1046. return
  1047. }
  1048. // GroupsIDs returns the "groups" edge IDs in the mutation.
  1049. func (m *UserMutation) GroupsIDs() (ids []int) {
  1050. for id := range m.groups {
  1051. ids = append(ids, id)
  1052. }
  1053. return
  1054. }
  1055. // ResetGroups resets all changes to the "groups" edge.
  1056. func (m *UserMutation) ResetGroups() {
  1057. m.groups = nil
  1058. m.clearedgroups = false
  1059. m.removedgroups = nil
  1060. }
  1061. // Where appends a list predicates to the UserMutation builder.
  1062. func (m *UserMutation) Where(ps ...predicate.User) {
  1063. m.predicates = append(m.predicates, ps...)
  1064. }
  1065. // Op returns the operation name.
  1066. func (m *UserMutation) Op() Op {
  1067. return m.op
  1068. }
  1069. // Type returns the node type of this mutation (User).
  1070. func (m *UserMutation) Type() string {
  1071. return m.typ
  1072. }
  1073. // Fields returns all fields that were changed during this mutation. Note that in
  1074. // order to get all numeric fields that were incremented/decremented, call
  1075. // AddedFields().
  1076. func (m *UserMutation) Fields() []string {
  1077. fields := make([]string, 0, 2)
  1078. if m.age != nil {
  1079. fields = append(fields, user.FieldAge)
  1080. }
  1081. if m.name != nil {
  1082. fields = append(fields, user.FieldName)
  1083. }
  1084. return fields
  1085. }
  1086. // Field returns the value of a field with the given name. The second boolean
  1087. // return value indicates that this field was not set, or was not defined in the
  1088. // schema.
  1089. func (m *UserMutation) Field(name string) (ent.Value, bool) {
  1090. switch name {
  1091. case user.FieldAge:
  1092. return m.Age()
  1093. case user.FieldName:
  1094. return m.Name()
  1095. }
  1096. return nil, false
  1097. }
  1098. // OldField returns the old value of the field from the database. An error is
  1099. // returned if the mutation operation is not UpdateOne, or the query to the
  1100. // database failed.
  1101. func (m *UserMutation) OldField(ctx context.Context, name string) (ent.Value, error) {
  1102. switch name {
  1103. case user.FieldAge:
  1104. return m.OldAge(ctx)
  1105. case user.FieldName:
  1106. return m.OldName(ctx)
  1107. }
  1108. return nil, fmt.Errorf("unknown User field %s", name)
  1109. }
  1110. // SetField sets the value of a field with the given name. It returns an error if
  1111. // the field is not defined in the schema, or if the type mismatched the field
  1112. // type.
  1113. func (m *UserMutation) SetField(name string, value ent.Value) error {
  1114. switch name {
  1115. case user.FieldAge:
  1116. v, ok := value.(int)
  1117. if !ok {
  1118. return fmt.Errorf("unexpected type %T for field %s", value, name)
  1119. }
  1120. m.SetAge(v)
  1121. return nil
  1122. case user.FieldName:
  1123. v, ok := value.(string)
  1124. if !ok {
  1125. return fmt.Errorf("unexpected type %T for field %s", value, name)
  1126. }
  1127. m.SetName(v)
  1128. return nil
  1129. }
  1130. return fmt.Errorf("unknown User field %s", name)
  1131. }
  1132. // AddedFields returns all numeric fields that were incremented/decremented during
  1133. // this mutation.
  1134. func (m *UserMutation) AddedFields() []string {
  1135. var fields []string
  1136. if m.addage != nil {
  1137. fields = append(fields, user.FieldAge)
  1138. }
  1139. return fields
  1140. }
  1141. // AddedField returns the numeric value that was incremented/decremented on a field
  1142. // with the given name. The second boolean return value indicates that this field
  1143. // was not set, or was not defined in the schema.
  1144. func (m *UserMutation) AddedField(name string) (ent.Value, bool) {
  1145. switch name {
  1146. case user.FieldAge:
  1147. return m.AddedAge()
  1148. }
  1149. return nil, false
  1150. }
  1151. // AddField adds the value to the field with the given name. It returns an error if
  1152. // the field is not defined in the schema, or if the type mismatched the field
  1153. // type.
  1154. func (m *UserMutation) AddField(name string, value ent.Value) error {
  1155. switch name {
  1156. case user.FieldAge:
  1157. v, ok := value.(int)
  1158. if !ok {
  1159. return fmt.Errorf("unexpected type %T for field %s", value, name)
  1160. }
  1161. m.AddAge(v)
  1162. return nil
  1163. }
  1164. return fmt.Errorf("unknown User numeric field %s", name)
  1165. }
  1166. // ClearedFields returns all nullable fields that were cleared during this
  1167. // mutation.
  1168. func (m *UserMutation) ClearedFields() []string {
  1169. return nil
  1170. }
  1171. // FieldCleared returns a boolean indicating if a field with the given name was
  1172. // cleared in this mutation.
  1173. func (m *UserMutation) FieldCleared(name string) bool {
  1174. _, ok := m.clearedFields[name]
  1175. return ok
  1176. }
  1177. // ClearField clears the value of the field with the given name. It returns an
  1178. // error if the field is not defined in the schema.
  1179. func (m *UserMutation) ClearField(name string) error {
  1180. return fmt.Errorf("unknown User nullable field %s", name)
  1181. }
  1182. // ResetField resets all changes in the mutation for the field with the given name.
  1183. // It returns an error if the field is not defined in the schema.
  1184. func (m *UserMutation) ResetField(name string) error {
  1185. switch name {
  1186. case user.FieldAge:
  1187. m.ResetAge()
  1188. return nil
  1189. case user.FieldName:
  1190. m.ResetName()
  1191. return nil
  1192. }
  1193. return fmt.Errorf("unknown User field %s", name)
  1194. }
  1195. // AddedEdges returns all edge names that were set/added in this mutation.
  1196. func (m *UserMutation) AddedEdges() []string {
  1197. edges := make([]string, 0, 2)
  1198. if m.cars != nil {
  1199. edges = append(edges, user.EdgeCars)
  1200. }
  1201. if m.groups != nil {
  1202. edges = append(edges, user.EdgeGroups)
  1203. }
  1204. return edges
  1205. }
  1206. // AddedIDs returns all IDs (to other nodes) that were added for the given edge
  1207. // name in this mutation.
  1208. func (m *UserMutation) AddedIDs(name string) []ent.Value {
  1209. switch name {
  1210. case user.EdgeCars:
  1211. ids := make([]ent.Value, 0, len(m.cars))
  1212. for id := range m.cars {
  1213. ids = append(ids, id)
  1214. }
  1215. return ids
  1216. case user.EdgeGroups:
  1217. ids := make([]ent.Value, 0, len(m.groups))
  1218. for id := range m.groups {
  1219. ids = append(ids, id)
  1220. }
  1221. return ids
  1222. }
  1223. return nil
  1224. }
  1225. // RemovedEdges returns all edge names that were removed in this mutation.
  1226. func (m *UserMutation) RemovedEdges() []string {
  1227. edges := make([]string, 0, 2)
  1228. if m.removedcars != nil {
  1229. edges = append(edges, user.EdgeCars)
  1230. }
  1231. if m.removedgroups != nil {
  1232. edges = append(edges, user.EdgeGroups)
  1233. }
  1234. return edges
  1235. }
  1236. // RemovedIDs returns all IDs (to other nodes) that were removed for the edge with
  1237. // the given name in this mutation.
  1238. func (m *UserMutation) RemovedIDs(name string) []ent.Value {
  1239. switch name {
  1240. case user.EdgeCars:
  1241. ids := make([]ent.Value, 0, len(m.removedcars))
  1242. for id := range m.removedcars {
  1243. ids = append(ids, id)
  1244. }
  1245. return ids
  1246. case user.EdgeGroups:
  1247. ids := make([]ent.Value, 0, len(m.removedgroups))
  1248. for id := range m.removedgroups {
  1249. ids = append(ids, id)
  1250. }
  1251. return ids
  1252. }
  1253. return nil
  1254. }
  1255. // ClearedEdges returns all edge names that were cleared in this mutation.
  1256. func (m *UserMutation) ClearedEdges() []string {
  1257. edges := make([]string, 0, 2)
  1258. if m.clearedcars {
  1259. edges = append(edges, user.EdgeCars)
  1260. }
  1261. if m.clearedgroups {
  1262. edges = append(edges, user.EdgeGroups)
  1263. }
  1264. return edges
  1265. }
  1266. // EdgeCleared returns a boolean which indicates if the edge with the given name
  1267. // was cleared in this mutation.
  1268. func (m *UserMutation) EdgeCleared(name string) bool {
  1269. switch name {
  1270. case user.EdgeCars:
  1271. return m.clearedcars
  1272. case user.EdgeGroups:
  1273. return m.clearedgroups
  1274. }
  1275. return false
  1276. }
  1277. // ClearEdge clears the value of the edge with the given name. It returns an error
  1278. // if that edge is not defined in the schema.
  1279. func (m *UserMutation) ClearEdge(name string) error {
  1280. switch name {
  1281. }
  1282. return fmt.Errorf("unknown User unique edge %s", name)
  1283. }
  1284. // ResetEdge resets all changes to the edge with the given name in this mutation.
  1285. // It returns an error if the edge is not defined in the schema.
  1286. func (m *UserMutation) ResetEdge(name string) error {
  1287. switch name {
  1288. case user.EdgeCars:
  1289. m.ResetCars()
  1290. return nil
  1291. case user.EdgeGroups:
  1292. m.ResetGroups()
  1293. return nil
  1294. }
  1295. return fmt.Errorf("unknown User edge %s", name)
  1296. }