client.go 114 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "context"
  5. "errors"
  6. "fmt"
  7. "log"
  8. "reflect"
  9. "wechat-api/ent/migrate"
  10. "wechat-api/ent/agent"
  11. "wechat-api/ent/batchmsg"
  12. "wechat-api/ent/contact"
  13. "wechat-api/ent/employee"
  14. "wechat-api/ent/employeeconfig"
  15. "wechat-api/ent/label"
  16. "wechat-api/ent/labelrelationship"
  17. "wechat-api/ent/message"
  18. "wechat-api/ent/messagerecords"
  19. "wechat-api/ent/msg"
  20. "wechat-api/ent/server"
  21. "wechat-api/ent/sopnode"
  22. "wechat-api/ent/sopstage"
  23. "wechat-api/ent/soptask"
  24. "wechat-api/ent/token"
  25. "wechat-api/ent/tutorial"
  26. "wechat-api/ent/workexperience"
  27. "wechat-api/ent/wx"
  28. "entgo.io/ent"
  29. "entgo.io/ent/dialect"
  30. "entgo.io/ent/dialect/sql"
  31. "entgo.io/ent/dialect/sql/sqlgraph"
  32. stdsql "database/sql"
  33. )
  34. // Client is the client that holds all ent builders.
  35. type Client struct {
  36. config
  37. // Schema is the client for creating, migrating and dropping schema.
  38. Schema *migrate.Schema
  39. // Agent is the client for interacting with the Agent builders.
  40. Agent *AgentClient
  41. // BatchMsg is the client for interacting with the BatchMsg builders.
  42. BatchMsg *BatchMsgClient
  43. // Contact is the client for interacting with the Contact builders.
  44. Contact *ContactClient
  45. // Employee is the client for interacting with the Employee builders.
  46. Employee *EmployeeClient
  47. // EmployeeConfig is the client for interacting with the EmployeeConfig builders.
  48. EmployeeConfig *EmployeeConfigClient
  49. // Label is the client for interacting with the Label builders.
  50. Label *LabelClient
  51. // LabelRelationship is the client for interacting with the LabelRelationship builders.
  52. LabelRelationship *LabelRelationshipClient
  53. // Message is the client for interacting with the Message builders.
  54. Message *MessageClient
  55. // MessageRecords is the client for interacting with the MessageRecords builders.
  56. MessageRecords *MessageRecordsClient
  57. // Msg is the client for interacting with the Msg builders.
  58. Msg *MsgClient
  59. // Server is the client for interacting with the Server builders.
  60. Server *ServerClient
  61. // SopNode is the client for interacting with the SopNode builders.
  62. SopNode *SopNodeClient
  63. // SopStage is the client for interacting with the SopStage builders.
  64. SopStage *SopStageClient
  65. // SopTask is the client for interacting with the SopTask builders.
  66. SopTask *SopTaskClient
  67. // Token is the client for interacting with the Token builders.
  68. Token *TokenClient
  69. // Tutorial is the client for interacting with the Tutorial builders.
  70. Tutorial *TutorialClient
  71. // WorkExperience is the client for interacting with the WorkExperience builders.
  72. WorkExperience *WorkExperienceClient
  73. // Wx is the client for interacting with the Wx builders.
  74. Wx *WxClient
  75. }
  76. // NewClient creates a new client configured with the given options.
  77. func NewClient(opts ...Option) *Client {
  78. client := &Client{config: newConfig(opts...)}
  79. client.init()
  80. return client
  81. }
  82. func (c *Client) init() {
  83. c.Schema = migrate.NewSchema(c.driver)
  84. c.Agent = NewAgentClient(c.config)
  85. c.BatchMsg = NewBatchMsgClient(c.config)
  86. c.Contact = NewContactClient(c.config)
  87. c.Employee = NewEmployeeClient(c.config)
  88. c.EmployeeConfig = NewEmployeeConfigClient(c.config)
  89. c.Label = NewLabelClient(c.config)
  90. c.LabelRelationship = NewLabelRelationshipClient(c.config)
  91. c.Message = NewMessageClient(c.config)
  92. c.MessageRecords = NewMessageRecordsClient(c.config)
  93. c.Msg = NewMsgClient(c.config)
  94. c.Server = NewServerClient(c.config)
  95. c.SopNode = NewSopNodeClient(c.config)
  96. c.SopStage = NewSopStageClient(c.config)
  97. c.SopTask = NewSopTaskClient(c.config)
  98. c.Token = NewTokenClient(c.config)
  99. c.Tutorial = NewTutorialClient(c.config)
  100. c.WorkExperience = NewWorkExperienceClient(c.config)
  101. c.Wx = NewWxClient(c.config)
  102. }
  103. type (
  104. // config is the configuration for the client and its builder.
  105. config struct {
  106. // driver used for executing database requests.
  107. driver dialect.Driver
  108. // debug enable a debug logging.
  109. debug bool
  110. // log used for logging on debug mode.
  111. log func(...any)
  112. // hooks to execute on mutations.
  113. hooks *hooks
  114. // interceptors to execute on queries.
  115. inters *inters
  116. }
  117. // Option function to configure the client.
  118. Option func(*config)
  119. )
  120. // newConfig creates a new config for the client.
  121. func newConfig(opts ...Option) config {
  122. cfg := config{log: log.Println, hooks: &hooks{}, inters: &inters{}}
  123. cfg.options(opts...)
  124. return cfg
  125. }
  126. // options applies the options on the config object.
  127. func (c *config) options(opts ...Option) {
  128. for _, opt := range opts {
  129. opt(c)
  130. }
  131. if c.debug {
  132. c.driver = dialect.Debug(c.driver, c.log)
  133. }
  134. }
  135. // Debug enables debug logging on the ent.Driver.
  136. func Debug() Option {
  137. return func(c *config) {
  138. c.debug = true
  139. }
  140. }
  141. // Log sets the logging function for debug mode.
  142. func Log(fn func(...any)) Option {
  143. return func(c *config) {
  144. c.log = fn
  145. }
  146. }
  147. // Driver configures the client driver.
  148. func Driver(driver dialect.Driver) Option {
  149. return func(c *config) {
  150. c.driver = driver
  151. }
  152. }
  153. // Open opens a database/sql.DB specified by the driver name and
  154. // the data source name, and returns a new client attached to it.
  155. // Optional parameters can be added for configuring the client.
  156. func Open(driverName, dataSourceName string, options ...Option) (*Client, error) {
  157. switch driverName {
  158. case dialect.MySQL, dialect.Postgres, dialect.SQLite:
  159. drv, err := sql.Open(driverName, dataSourceName)
  160. if err != nil {
  161. return nil, err
  162. }
  163. return NewClient(append(options, Driver(drv))...), nil
  164. default:
  165. return nil, fmt.Errorf("unsupported driver: %q", driverName)
  166. }
  167. }
  168. // ErrTxStarted is returned when trying to start a new transaction from a transactional client.
  169. var ErrTxStarted = errors.New("ent: cannot start a transaction within a transaction")
  170. // Tx returns a new transactional client. The provided context
  171. // is used until the transaction is committed or rolled back.
  172. func (c *Client) Tx(ctx context.Context) (*Tx, error) {
  173. if _, ok := c.driver.(*txDriver); ok {
  174. return nil, ErrTxStarted
  175. }
  176. tx, err := newTx(ctx, c.driver)
  177. if err != nil {
  178. return nil, fmt.Errorf("ent: starting a transaction: %w", err)
  179. }
  180. cfg := c.config
  181. cfg.driver = tx
  182. return &Tx{
  183. ctx: ctx,
  184. config: cfg,
  185. Agent: NewAgentClient(cfg),
  186. BatchMsg: NewBatchMsgClient(cfg),
  187. Contact: NewContactClient(cfg),
  188. Employee: NewEmployeeClient(cfg),
  189. EmployeeConfig: NewEmployeeConfigClient(cfg),
  190. Label: NewLabelClient(cfg),
  191. LabelRelationship: NewLabelRelationshipClient(cfg),
  192. Message: NewMessageClient(cfg),
  193. MessageRecords: NewMessageRecordsClient(cfg),
  194. Msg: NewMsgClient(cfg),
  195. Server: NewServerClient(cfg),
  196. SopNode: NewSopNodeClient(cfg),
  197. SopStage: NewSopStageClient(cfg),
  198. SopTask: NewSopTaskClient(cfg),
  199. Token: NewTokenClient(cfg),
  200. Tutorial: NewTutorialClient(cfg),
  201. WorkExperience: NewWorkExperienceClient(cfg),
  202. Wx: NewWxClient(cfg),
  203. }, nil
  204. }
  205. // BeginTx returns a transactional client with specified options.
  206. func (c *Client) BeginTx(ctx context.Context, opts *sql.TxOptions) (*Tx, error) {
  207. if _, ok := c.driver.(*txDriver); ok {
  208. return nil, errors.New("ent: cannot start a transaction within a transaction")
  209. }
  210. tx, err := c.driver.(interface {
  211. BeginTx(context.Context, *sql.TxOptions) (dialect.Tx, error)
  212. }).BeginTx(ctx, opts)
  213. if err != nil {
  214. return nil, fmt.Errorf("ent: starting a transaction: %w", err)
  215. }
  216. cfg := c.config
  217. cfg.driver = &txDriver{tx: tx, drv: c.driver}
  218. return &Tx{
  219. ctx: ctx,
  220. config: cfg,
  221. Agent: NewAgentClient(cfg),
  222. BatchMsg: NewBatchMsgClient(cfg),
  223. Contact: NewContactClient(cfg),
  224. Employee: NewEmployeeClient(cfg),
  225. EmployeeConfig: NewEmployeeConfigClient(cfg),
  226. Label: NewLabelClient(cfg),
  227. LabelRelationship: NewLabelRelationshipClient(cfg),
  228. Message: NewMessageClient(cfg),
  229. MessageRecords: NewMessageRecordsClient(cfg),
  230. Msg: NewMsgClient(cfg),
  231. Server: NewServerClient(cfg),
  232. SopNode: NewSopNodeClient(cfg),
  233. SopStage: NewSopStageClient(cfg),
  234. SopTask: NewSopTaskClient(cfg),
  235. Token: NewTokenClient(cfg),
  236. Tutorial: NewTutorialClient(cfg),
  237. WorkExperience: NewWorkExperienceClient(cfg),
  238. Wx: NewWxClient(cfg),
  239. }, nil
  240. }
  241. // Debug returns a new debug-client. It's used to get verbose logging on specific operations.
  242. //
  243. // client.Debug().
  244. // Agent.
  245. // Query().
  246. // Count(ctx)
  247. func (c *Client) Debug() *Client {
  248. if c.debug {
  249. return c
  250. }
  251. cfg := c.config
  252. cfg.driver = dialect.Debug(c.driver, c.log)
  253. client := &Client{config: cfg}
  254. client.init()
  255. return client
  256. }
  257. // Close closes the database connection and prevents new queries from starting.
  258. func (c *Client) Close() error {
  259. return c.driver.Close()
  260. }
  261. // Use adds the mutation hooks to all the entity clients.
  262. // In order to add hooks to a specific client, call: `client.Node.Use(...)`.
  263. func (c *Client) Use(hooks ...Hook) {
  264. for _, n := range []interface{ Use(...Hook) }{
  265. c.Agent, c.BatchMsg, c.Contact, c.Employee, c.EmployeeConfig, c.Label,
  266. c.LabelRelationship, c.Message, c.MessageRecords, c.Msg, c.Server, c.SopNode,
  267. c.SopStage, c.SopTask, c.Token, c.Tutorial, c.WorkExperience, c.Wx,
  268. } {
  269. n.Use(hooks...)
  270. }
  271. }
  272. // Intercept adds the query interceptors to all the entity clients.
  273. // In order to add interceptors to a specific client, call: `client.Node.Intercept(...)`.
  274. func (c *Client) Intercept(interceptors ...Interceptor) {
  275. for _, n := range []interface{ Intercept(...Interceptor) }{
  276. c.Agent, c.BatchMsg, c.Contact, c.Employee, c.EmployeeConfig, c.Label,
  277. c.LabelRelationship, c.Message, c.MessageRecords, c.Msg, c.Server, c.SopNode,
  278. c.SopStage, c.SopTask, c.Token, c.Tutorial, c.WorkExperience, c.Wx,
  279. } {
  280. n.Intercept(interceptors...)
  281. }
  282. }
  283. // Mutate implements the ent.Mutator interface.
  284. func (c *Client) Mutate(ctx context.Context, m Mutation) (Value, error) {
  285. switch m := m.(type) {
  286. case *AgentMutation:
  287. return c.Agent.mutate(ctx, m)
  288. case *BatchMsgMutation:
  289. return c.BatchMsg.mutate(ctx, m)
  290. case *ContactMutation:
  291. return c.Contact.mutate(ctx, m)
  292. case *EmployeeMutation:
  293. return c.Employee.mutate(ctx, m)
  294. case *EmployeeConfigMutation:
  295. return c.EmployeeConfig.mutate(ctx, m)
  296. case *LabelMutation:
  297. return c.Label.mutate(ctx, m)
  298. case *LabelRelationshipMutation:
  299. return c.LabelRelationship.mutate(ctx, m)
  300. case *MessageMutation:
  301. return c.Message.mutate(ctx, m)
  302. case *MessageRecordsMutation:
  303. return c.MessageRecords.mutate(ctx, m)
  304. case *MsgMutation:
  305. return c.Msg.mutate(ctx, m)
  306. case *ServerMutation:
  307. return c.Server.mutate(ctx, m)
  308. case *SopNodeMutation:
  309. return c.SopNode.mutate(ctx, m)
  310. case *SopStageMutation:
  311. return c.SopStage.mutate(ctx, m)
  312. case *SopTaskMutation:
  313. return c.SopTask.mutate(ctx, m)
  314. case *TokenMutation:
  315. return c.Token.mutate(ctx, m)
  316. case *TutorialMutation:
  317. return c.Tutorial.mutate(ctx, m)
  318. case *WorkExperienceMutation:
  319. return c.WorkExperience.mutate(ctx, m)
  320. case *WxMutation:
  321. return c.Wx.mutate(ctx, m)
  322. default:
  323. return nil, fmt.Errorf("ent: unknown mutation type %T", m)
  324. }
  325. }
  326. // AgentClient is a client for the Agent schema.
  327. type AgentClient struct {
  328. config
  329. }
  330. // NewAgentClient returns a client for the Agent from the given config.
  331. func NewAgentClient(c config) *AgentClient {
  332. return &AgentClient{config: c}
  333. }
  334. // Use adds a list of mutation hooks to the hooks stack.
  335. // A call to `Use(f, g, h)` equals to `agent.Hooks(f(g(h())))`.
  336. func (c *AgentClient) Use(hooks ...Hook) {
  337. c.hooks.Agent = append(c.hooks.Agent, hooks...)
  338. }
  339. // Intercept adds a list of query interceptors to the interceptors stack.
  340. // A call to `Intercept(f, g, h)` equals to `agent.Intercept(f(g(h())))`.
  341. func (c *AgentClient) Intercept(interceptors ...Interceptor) {
  342. c.inters.Agent = append(c.inters.Agent, interceptors...)
  343. }
  344. // Create returns a builder for creating a Agent entity.
  345. func (c *AgentClient) Create() *AgentCreate {
  346. mutation := newAgentMutation(c.config, OpCreate)
  347. return &AgentCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  348. }
  349. // CreateBulk returns a builder for creating a bulk of Agent entities.
  350. func (c *AgentClient) CreateBulk(builders ...*AgentCreate) *AgentCreateBulk {
  351. return &AgentCreateBulk{config: c.config, builders: builders}
  352. }
  353. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  354. // a builder and applies setFunc on it.
  355. func (c *AgentClient) MapCreateBulk(slice any, setFunc func(*AgentCreate, int)) *AgentCreateBulk {
  356. rv := reflect.ValueOf(slice)
  357. if rv.Kind() != reflect.Slice {
  358. return &AgentCreateBulk{err: fmt.Errorf("calling to AgentClient.MapCreateBulk with wrong type %T, need slice", slice)}
  359. }
  360. builders := make([]*AgentCreate, rv.Len())
  361. for i := 0; i < rv.Len(); i++ {
  362. builders[i] = c.Create()
  363. setFunc(builders[i], i)
  364. }
  365. return &AgentCreateBulk{config: c.config, builders: builders}
  366. }
  367. // Update returns an update builder for Agent.
  368. func (c *AgentClient) Update() *AgentUpdate {
  369. mutation := newAgentMutation(c.config, OpUpdate)
  370. return &AgentUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  371. }
  372. // UpdateOne returns an update builder for the given entity.
  373. func (c *AgentClient) UpdateOne(a *Agent) *AgentUpdateOne {
  374. mutation := newAgentMutation(c.config, OpUpdateOne, withAgent(a))
  375. return &AgentUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  376. }
  377. // UpdateOneID returns an update builder for the given id.
  378. func (c *AgentClient) UpdateOneID(id uint64) *AgentUpdateOne {
  379. mutation := newAgentMutation(c.config, OpUpdateOne, withAgentID(id))
  380. return &AgentUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  381. }
  382. // Delete returns a delete builder for Agent.
  383. func (c *AgentClient) Delete() *AgentDelete {
  384. mutation := newAgentMutation(c.config, OpDelete)
  385. return &AgentDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  386. }
  387. // DeleteOne returns a builder for deleting the given entity.
  388. func (c *AgentClient) DeleteOne(a *Agent) *AgentDeleteOne {
  389. return c.DeleteOneID(a.ID)
  390. }
  391. // DeleteOneID returns a builder for deleting the given entity by its id.
  392. func (c *AgentClient) DeleteOneID(id uint64) *AgentDeleteOne {
  393. builder := c.Delete().Where(agent.ID(id))
  394. builder.mutation.id = &id
  395. builder.mutation.op = OpDeleteOne
  396. return &AgentDeleteOne{builder}
  397. }
  398. // Query returns a query builder for Agent.
  399. func (c *AgentClient) Query() *AgentQuery {
  400. return &AgentQuery{
  401. config: c.config,
  402. ctx: &QueryContext{Type: TypeAgent},
  403. inters: c.Interceptors(),
  404. }
  405. }
  406. // Get returns a Agent entity by its id.
  407. func (c *AgentClient) Get(ctx context.Context, id uint64) (*Agent, error) {
  408. return c.Query().Where(agent.ID(id)).Only(ctx)
  409. }
  410. // GetX is like Get, but panics if an error occurs.
  411. func (c *AgentClient) GetX(ctx context.Context, id uint64) *Agent {
  412. obj, err := c.Get(ctx, id)
  413. if err != nil {
  414. panic(err)
  415. }
  416. return obj
  417. }
  418. // QueryWxAgent queries the wx_agent edge of a Agent.
  419. func (c *AgentClient) QueryWxAgent(a *Agent) *WxQuery {
  420. query := (&WxClient{config: c.config}).Query()
  421. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  422. id := a.ID
  423. step := sqlgraph.NewStep(
  424. sqlgraph.From(agent.Table, agent.FieldID, id),
  425. sqlgraph.To(wx.Table, wx.FieldID),
  426. sqlgraph.Edge(sqlgraph.O2M, false, agent.WxAgentTable, agent.WxAgentColumn),
  427. )
  428. fromV = sqlgraph.Neighbors(a.driver.Dialect(), step)
  429. return fromV, nil
  430. }
  431. return query
  432. }
  433. // Hooks returns the client hooks.
  434. func (c *AgentClient) Hooks() []Hook {
  435. hooks := c.hooks.Agent
  436. return append(hooks[:len(hooks):len(hooks)], agent.Hooks[:]...)
  437. }
  438. // Interceptors returns the client interceptors.
  439. func (c *AgentClient) Interceptors() []Interceptor {
  440. inters := c.inters.Agent
  441. return append(inters[:len(inters):len(inters)], agent.Interceptors[:]...)
  442. }
  443. func (c *AgentClient) mutate(ctx context.Context, m *AgentMutation) (Value, error) {
  444. switch m.Op() {
  445. case OpCreate:
  446. return (&AgentCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  447. case OpUpdate:
  448. return (&AgentUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  449. case OpUpdateOne:
  450. return (&AgentUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  451. case OpDelete, OpDeleteOne:
  452. return (&AgentDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  453. default:
  454. return nil, fmt.Errorf("ent: unknown Agent mutation op: %q", m.Op())
  455. }
  456. }
  457. // BatchMsgClient is a client for the BatchMsg schema.
  458. type BatchMsgClient struct {
  459. config
  460. }
  461. // NewBatchMsgClient returns a client for the BatchMsg from the given config.
  462. func NewBatchMsgClient(c config) *BatchMsgClient {
  463. return &BatchMsgClient{config: c}
  464. }
  465. // Use adds a list of mutation hooks to the hooks stack.
  466. // A call to `Use(f, g, h)` equals to `batchmsg.Hooks(f(g(h())))`.
  467. func (c *BatchMsgClient) Use(hooks ...Hook) {
  468. c.hooks.BatchMsg = append(c.hooks.BatchMsg, hooks...)
  469. }
  470. // Intercept adds a list of query interceptors to the interceptors stack.
  471. // A call to `Intercept(f, g, h)` equals to `batchmsg.Intercept(f(g(h())))`.
  472. func (c *BatchMsgClient) Intercept(interceptors ...Interceptor) {
  473. c.inters.BatchMsg = append(c.inters.BatchMsg, interceptors...)
  474. }
  475. // Create returns a builder for creating a BatchMsg entity.
  476. func (c *BatchMsgClient) Create() *BatchMsgCreate {
  477. mutation := newBatchMsgMutation(c.config, OpCreate)
  478. return &BatchMsgCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  479. }
  480. // CreateBulk returns a builder for creating a bulk of BatchMsg entities.
  481. func (c *BatchMsgClient) CreateBulk(builders ...*BatchMsgCreate) *BatchMsgCreateBulk {
  482. return &BatchMsgCreateBulk{config: c.config, builders: builders}
  483. }
  484. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  485. // a builder and applies setFunc on it.
  486. func (c *BatchMsgClient) MapCreateBulk(slice any, setFunc func(*BatchMsgCreate, int)) *BatchMsgCreateBulk {
  487. rv := reflect.ValueOf(slice)
  488. if rv.Kind() != reflect.Slice {
  489. return &BatchMsgCreateBulk{err: fmt.Errorf("calling to BatchMsgClient.MapCreateBulk with wrong type %T, need slice", slice)}
  490. }
  491. builders := make([]*BatchMsgCreate, rv.Len())
  492. for i := 0; i < rv.Len(); i++ {
  493. builders[i] = c.Create()
  494. setFunc(builders[i], i)
  495. }
  496. return &BatchMsgCreateBulk{config: c.config, builders: builders}
  497. }
  498. // Update returns an update builder for BatchMsg.
  499. func (c *BatchMsgClient) Update() *BatchMsgUpdate {
  500. mutation := newBatchMsgMutation(c.config, OpUpdate)
  501. return &BatchMsgUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  502. }
  503. // UpdateOne returns an update builder for the given entity.
  504. func (c *BatchMsgClient) UpdateOne(bm *BatchMsg) *BatchMsgUpdateOne {
  505. mutation := newBatchMsgMutation(c.config, OpUpdateOne, withBatchMsg(bm))
  506. return &BatchMsgUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  507. }
  508. // UpdateOneID returns an update builder for the given id.
  509. func (c *BatchMsgClient) UpdateOneID(id uint64) *BatchMsgUpdateOne {
  510. mutation := newBatchMsgMutation(c.config, OpUpdateOne, withBatchMsgID(id))
  511. return &BatchMsgUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  512. }
  513. // Delete returns a delete builder for BatchMsg.
  514. func (c *BatchMsgClient) Delete() *BatchMsgDelete {
  515. mutation := newBatchMsgMutation(c.config, OpDelete)
  516. return &BatchMsgDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  517. }
  518. // DeleteOne returns a builder for deleting the given entity.
  519. func (c *BatchMsgClient) DeleteOne(bm *BatchMsg) *BatchMsgDeleteOne {
  520. return c.DeleteOneID(bm.ID)
  521. }
  522. // DeleteOneID returns a builder for deleting the given entity by its id.
  523. func (c *BatchMsgClient) DeleteOneID(id uint64) *BatchMsgDeleteOne {
  524. builder := c.Delete().Where(batchmsg.ID(id))
  525. builder.mutation.id = &id
  526. builder.mutation.op = OpDeleteOne
  527. return &BatchMsgDeleteOne{builder}
  528. }
  529. // Query returns a query builder for BatchMsg.
  530. func (c *BatchMsgClient) Query() *BatchMsgQuery {
  531. return &BatchMsgQuery{
  532. config: c.config,
  533. ctx: &QueryContext{Type: TypeBatchMsg},
  534. inters: c.Interceptors(),
  535. }
  536. }
  537. // Get returns a BatchMsg entity by its id.
  538. func (c *BatchMsgClient) Get(ctx context.Context, id uint64) (*BatchMsg, error) {
  539. return c.Query().Where(batchmsg.ID(id)).Only(ctx)
  540. }
  541. // GetX is like Get, but panics if an error occurs.
  542. func (c *BatchMsgClient) GetX(ctx context.Context, id uint64) *BatchMsg {
  543. obj, err := c.Get(ctx, id)
  544. if err != nil {
  545. panic(err)
  546. }
  547. return obj
  548. }
  549. // Hooks returns the client hooks.
  550. func (c *BatchMsgClient) Hooks() []Hook {
  551. hooks := c.hooks.BatchMsg
  552. return append(hooks[:len(hooks):len(hooks)], batchmsg.Hooks[:]...)
  553. }
  554. // Interceptors returns the client interceptors.
  555. func (c *BatchMsgClient) Interceptors() []Interceptor {
  556. inters := c.inters.BatchMsg
  557. return append(inters[:len(inters):len(inters)], batchmsg.Interceptors[:]...)
  558. }
  559. func (c *BatchMsgClient) mutate(ctx context.Context, m *BatchMsgMutation) (Value, error) {
  560. switch m.Op() {
  561. case OpCreate:
  562. return (&BatchMsgCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  563. case OpUpdate:
  564. return (&BatchMsgUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  565. case OpUpdateOne:
  566. return (&BatchMsgUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  567. case OpDelete, OpDeleteOne:
  568. return (&BatchMsgDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  569. default:
  570. return nil, fmt.Errorf("ent: unknown BatchMsg mutation op: %q", m.Op())
  571. }
  572. }
  573. // ContactClient is a client for the Contact schema.
  574. type ContactClient struct {
  575. config
  576. }
  577. // NewContactClient returns a client for the Contact from the given config.
  578. func NewContactClient(c config) *ContactClient {
  579. return &ContactClient{config: c}
  580. }
  581. // Use adds a list of mutation hooks to the hooks stack.
  582. // A call to `Use(f, g, h)` equals to `contact.Hooks(f(g(h())))`.
  583. func (c *ContactClient) Use(hooks ...Hook) {
  584. c.hooks.Contact = append(c.hooks.Contact, hooks...)
  585. }
  586. // Intercept adds a list of query interceptors to the interceptors stack.
  587. // A call to `Intercept(f, g, h)` equals to `contact.Intercept(f(g(h())))`.
  588. func (c *ContactClient) Intercept(interceptors ...Interceptor) {
  589. c.inters.Contact = append(c.inters.Contact, interceptors...)
  590. }
  591. // Create returns a builder for creating a Contact entity.
  592. func (c *ContactClient) Create() *ContactCreate {
  593. mutation := newContactMutation(c.config, OpCreate)
  594. return &ContactCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  595. }
  596. // CreateBulk returns a builder for creating a bulk of Contact entities.
  597. func (c *ContactClient) CreateBulk(builders ...*ContactCreate) *ContactCreateBulk {
  598. return &ContactCreateBulk{config: c.config, builders: builders}
  599. }
  600. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  601. // a builder and applies setFunc on it.
  602. func (c *ContactClient) MapCreateBulk(slice any, setFunc func(*ContactCreate, int)) *ContactCreateBulk {
  603. rv := reflect.ValueOf(slice)
  604. if rv.Kind() != reflect.Slice {
  605. return &ContactCreateBulk{err: fmt.Errorf("calling to ContactClient.MapCreateBulk with wrong type %T, need slice", slice)}
  606. }
  607. builders := make([]*ContactCreate, rv.Len())
  608. for i := 0; i < rv.Len(); i++ {
  609. builders[i] = c.Create()
  610. setFunc(builders[i], i)
  611. }
  612. return &ContactCreateBulk{config: c.config, builders: builders}
  613. }
  614. // Update returns an update builder for Contact.
  615. func (c *ContactClient) Update() *ContactUpdate {
  616. mutation := newContactMutation(c.config, OpUpdate)
  617. return &ContactUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  618. }
  619. // UpdateOne returns an update builder for the given entity.
  620. func (c *ContactClient) UpdateOne(co *Contact) *ContactUpdateOne {
  621. mutation := newContactMutation(c.config, OpUpdateOne, withContact(co))
  622. return &ContactUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  623. }
  624. // UpdateOneID returns an update builder for the given id.
  625. func (c *ContactClient) UpdateOneID(id uint64) *ContactUpdateOne {
  626. mutation := newContactMutation(c.config, OpUpdateOne, withContactID(id))
  627. return &ContactUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  628. }
  629. // Delete returns a delete builder for Contact.
  630. func (c *ContactClient) Delete() *ContactDelete {
  631. mutation := newContactMutation(c.config, OpDelete)
  632. return &ContactDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  633. }
  634. // DeleteOne returns a builder for deleting the given entity.
  635. func (c *ContactClient) DeleteOne(co *Contact) *ContactDeleteOne {
  636. return c.DeleteOneID(co.ID)
  637. }
  638. // DeleteOneID returns a builder for deleting the given entity by its id.
  639. func (c *ContactClient) DeleteOneID(id uint64) *ContactDeleteOne {
  640. builder := c.Delete().Where(contact.ID(id))
  641. builder.mutation.id = &id
  642. builder.mutation.op = OpDeleteOne
  643. return &ContactDeleteOne{builder}
  644. }
  645. // Query returns a query builder for Contact.
  646. func (c *ContactClient) Query() *ContactQuery {
  647. return &ContactQuery{
  648. config: c.config,
  649. ctx: &QueryContext{Type: TypeContact},
  650. inters: c.Interceptors(),
  651. }
  652. }
  653. // Get returns a Contact entity by its id.
  654. func (c *ContactClient) Get(ctx context.Context, id uint64) (*Contact, error) {
  655. return c.Query().Where(contact.ID(id)).Only(ctx)
  656. }
  657. // GetX is like Get, but panics if an error occurs.
  658. func (c *ContactClient) GetX(ctx context.Context, id uint64) *Contact {
  659. obj, err := c.Get(ctx, id)
  660. if err != nil {
  661. panic(err)
  662. }
  663. return obj
  664. }
  665. // QueryContactRelationships queries the contact_relationships edge of a Contact.
  666. func (c *ContactClient) QueryContactRelationships(co *Contact) *LabelRelationshipQuery {
  667. query := (&LabelRelationshipClient{config: c.config}).Query()
  668. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  669. id := co.ID
  670. step := sqlgraph.NewStep(
  671. sqlgraph.From(contact.Table, contact.FieldID, id),
  672. sqlgraph.To(labelrelationship.Table, labelrelationship.FieldID),
  673. sqlgraph.Edge(sqlgraph.O2M, false, contact.ContactRelationshipsTable, contact.ContactRelationshipsColumn),
  674. )
  675. fromV = sqlgraph.Neighbors(co.driver.Dialect(), step)
  676. return fromV, nil
  677. }
  678. return query
  679. }
  680. // QueryContactMessages queries the contact_messages edge of a Contact.
  681. func (c *ContactClient) QueryContactMessages(co *Contact) *MessageRecordsQuery {
  682. query := (&MessageRecordsClient{config: c.config}).Query()
  683. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  684. id := co.ID
  685. step := sqlgraph.NewStep(
  686. sqlgraph.From(contact.Table, contact.FieldID, id),
  687. sqlgraph.To(messagerecords.Table, messagerecords.FieldID),
  688. sqlgraph.Edge(sqlgraph.O2M, false, contact.ContactMessagesTable, contact.ContactMessagesColumn),
  689. )
  690. fromV = sqlgraph.Neighbors(co.driver.Dialect(), step)
  691. return fromV, nil
  692. }
  693. return query
  694. }
  695. // Hooks returns the client hooks.
  696. func (c *ContactClient) Hooks() []Hook {
  697. hooks := c.hooks.Contact
  698. return append(hooks[:len(hooks):len(hooks)], contact.Hooks[:]...)
  699. }
  700. // Interceptors returns the client interceptors.
  701. func (c *ContactClient) Interceptors() []Interceptor {
  702. inters := c.inters.Contact
  703. return append(inters[:len(inters):len(inters)], contact.Interceptors[:]...)
  704. }
  705. func (c *ContactClient) mutate(ctx context.Context, m *ContactMutation) (Value, error) {
  706. switch m.Op() {
  707. case OpCreate:
  708. return (&ContactCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  709. case OpUpdate:
  710. return (&ContactUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  711. case OpUpdateOne:
  712. return (&ContactUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  713. case OpDelete, OpDeleteOne:
  714. return (&ContactDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  715. default:
  716. return nil, fmt.Errorf("ent: unknown Contact mutation op: %q", m.Op())
  717. }
  718. }
  719. // EmployeeClient is a client for the Employee schema.
  720. type EmployeeClient struct {
  721. config
  722. }
  723. // NewEmployeeClient returns a client for the Employee from the given config.
  724. func NewEmployeeClient(c config) *EmployeeClient {
  725. return &EmployeeClient{config: c}
  726. }
  727. // Use adds a list of mutation hooks to the hooks stack.
  728. // A call to `Use(f, g, h)` equals to `employee.Hooks(f(g(h())))`.
  729. func (c *EmployeeClient) Use(hooks ...Hook) {
  730. c.hooks.Employee = append(c.hooks.Employee, hooks...)
  731. }
  732. // Intercept adds a list of query interceptors to the interceptors stack.
  733. // A call to `Intercept(f, g, h)` equals to `employee.Intercept(f(g(h())))`.
  734. func (c *EmployeeClient) Intercept(interceptors ...Interceptor) {
  735. c.inters.Employee = append(c.inters.Employee, interceptors...)
  736. }
  737. // Create returns a builder for creating a Employee entity.
  738. func (c *EmployeeClient) Create() *EmployeeCreate {
  739. mutation := newEmployeeMutation(c.config, OpCreate)
  740. return &EmployeeCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  741. }
  742. // CreateBulk returns a builder for creating a bulk of Employee entities.
  743. func (c *EmployeeClient) CreateBulk(builders ...*EmployeeCreate) *EmployeeCreateBulk {
  744. return &EmployeeCreateBulk{config: c.config, builders: builders}
  745. }
  746. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  747. // a builder and applies setFunc on it.
  748. func (c *EmployeeClient) MapCreateBulk(slice any, setFunc func(*EmployeeCreate, int)) *EmployeeCreateBulk {
  749. rv := reflect.ValueOf(slice)
  750. if rv.Kind() != reflect.Slice {
  751. return &EmployeeCreateBulk{err: fmt.Errorf("calling to EmployeeClient.MapCreateBulk with wrong type %T, need slice", slice)}
  752. }
  753. builders := make([]*EmployeeCreate, rv.Len())
  754. for i := 0; i < rv.Len(); i++ {
  755. builders[i] = c.Create()
  756. setFunc(builders[i], i)
  757. }
  758. return &EmployeeCreateBulk{config: c.config, builders: builders}
  759. }
  760. // Update returns an update builder for Employee.
  761. func (c *EmployeeClient) Update() *EmployeeUpdate {
  762. mutation := newEmployeeMutation(c.config, OpUpdate)
  763. return &EmployeeUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  764. }
  765. // UpdateOne returns an update builder for the given entity.
  766. func (c *EmployeeClient) UpdateOne(e *Employee) *EmployeeUpdateOne {
  767. mutation := newEmployeeMutation(c.config, OpUpdateOne, withEmployee(e))
  768. return &EmployeeUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  769. }
  770. // UpdateOneID returns an update builder for the given id.
  771. func (c *EmployeeClient) UpdateOneID(id uint64) *EmployeeUpdateOne {
  772. mutation := newEmployeeMutation(c.config, OpUpdateOne, withEmployeeID(id))
  773. return &EmployeeUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  774. }
  775. // Delete returns a delete builder for Employee.
  776. func (c *EmployeeClient) Delete() *EmployeeDelete {
  777. mutation := newEmployeeMutation(c.config, OpDelete)
  778. return &EmployeeDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  779. }
  780. // DeleteOne returns a builder for deleting the given entity.
  781. func (c *EmployeeClient) DeleteOne(e *Employee) *EmployeeDeleteOne {
  782. return c.DeleteOneID(e.ID)
  783. }
  784. // DeleteOneID returns a builder for deleting the given entity by its id.
  785. func (c *EmployeeClient) DeleteOneID(id uint64) *EmployeeDeleteOne {
  786. builder := c.Delete().Where(employee.ID(id))
  787. builder.mutation.id = &id
  788. builder.mutation.op = OpDeleteOne
  789. return &EmployeeDeleteOne{builder}
  790. }
  791. // Query returns a query builder for Employee.
  792. func (c *EmployeeClient) Query() *EmployeeQuery {
  793. return &EmployeeQuery{
  794. config: c.config,
  795. ctx: &QueryContext{Type: TypeEmployee},
  796. inters: c.Interceptors(),
  797. }
  798. }
  799. // Get returns a Employee entity by its id.
  800. func (c *EmployeeClient) Get(ctx context.Context, id uint64) (*Employee, error) {
  801. return c.Query().Where(employee.ID(id)).Only(ctx)
  802. }
  803. // GetX is like Get, but panics if an error occurs.
  804. func (c *EmployeeClient) GetX(ctx context.Context, id uint64) *Employee {
  805. obj, err := c.Get(ctx, id)
  806. if err != nil {
  807. panic(err)
  808. }
  809. return obj
  810. }
  811. // QueryEmWorkExperiences queries the em_work_experiences edge of a Employee.
  812. func (c *EmployeeClient) QueryEmWorkExperiences(e *Employee) *WorkExperienceQuery {
  813. query := (&WorkExperienceClient{config: c.config}).Query()
  814. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  815. id := e.ID
  816. step := sqlgraph.NewStep(
  817. sqlgraph.From(employee.Table, employee.FieldID, id),
  818. sqlgraph.To(workexperience.Table, workexperience.FieldID),
  819. sqlgraph.Edge(sqlgraph.O2M, false, employee.EmWorkExperiencesTable, employee.EmWorkExperiencesColumn),
  820. )
  821. fromV = sqlgraph.Neighbors(e.driver.Dialect(), step)
  822. return fromV, nil
  823. }
  824. return query
  825. }
  826. // QueryEmTutorial queries the em_tutorial edge of a Employee.
  827. func (c *EmployeeClient) QueryEmTutorial(e *Employee) *TutorialQuery {
  828. query := (&TutorialClient{config: c.config}).Query()
  829. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  830. id := e.ID
  831. step := sqlgraph.NewStep(
  832. sqlgraph.From(employee.Table, employee.FieldID, id),
  833. sqlgraph.To(tutorial.Table, tutorial.FieldID),
  834. sqlgraph.Edge(sqlgraph.O2M, false, employee.EmTutorialTable, employee.EmTutorialColumn),
  835. )
  836. fromV = sqlgraph.Neighbors(e.driver.Dialect(), step)
  837. return fromV, nil
  838. }
  839. return query
  840. }
  841. // Hooks returns the client hooks.
  842. func (c *EmployeeClient) Hooks() []Hook {
  843. hooks := c.hooks.Employee
  844. return append(hooks[:len(hooks):len(hooks)], employee.Hooks[:]...)
  845. }
  846. // Interceptors returns the client interceptors.
  847. func (c *EmployeeClient) Interceptors() []Interceptor {
  848. inters := c.inters.Employee
  849. return append(inters[:len(inters):len(inters)], employee.Interceptors[:]...)
  850. }
  851. func (c *EmployeeClient) mutate(ctx context.Context, m *EmployeeMutation) (Value, error) {
  852. switch m.Op() {
  853. case OpCreate:
  854. return (&EmployeeCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  855. case OpUpdate:
  856. return (&EmployeeUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  857. case OpUpdateOne:
  858. return (&EmployeeUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  859. case OpDelete, OpDeleteOne:
  860. return (&EmployeeDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  861. default:
  862. return nil, fmt.Errorf("ent: unknown Employee mutation op: %q", m.Op())
  863. }
  864. }
  865. // EmployeeConfigClient is a client for the EmployeeConfig schema.
  866. type EmployeeConfigClient struct {
  867. config
  868. }
  869. // NewEmployeeConfigClient returns a client for the EmployeeConfig from the given config.
  870. func NewEmployeeConfigClient(c config) *EmployeeConfigClient {
  871. return &EmployeeConfigClient{config: c}
  872. }
  873. // Use adds a list of mutation hooks to the hooks stack.
  874. // A call to `Use(f, g, h)` equals to `employeeconfig.Hooks(f(g(h())))`.
  875. func (c *EmployeeConfigClient) Use(hooks ...Hook) {
  876. c.hooks.EmployeeConfig = append(c.hooks.EmployeeConfig, hooks...)
  877. }
  878. // Intercept adds a list of query interceptors to the interceptors stack.
  879. // A call to `Intercept(f, g, h)` equals to `employeeconfig.Intercept(f(g(h())))`.
  880. func (c *EmployeeConfigClient) Intercept(interceptors ...Interceptor) {
  881. c.inters.EmployeeConfig = append(c.inters.EmployeeConfig, interceptors...)
  882. }
  883. // Create returns a builder for creating a EmployeeConfig entity.
  884. func (c *EmployeeConfigClient) Create() *EmployeeConfigCreate {
  885. mutation := newEmployeeConfigMutation(c.config, OpCreate)
  886. return &EmployeeConfigCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  887. }
  888. // CreateBulk returns a builder for creating a bulk of EmployeeConfig entities.
  889. func (c *EmployeeConfigClient) CreateBulk(builders ...*EmployeeConfigCreate) *EmployeeConfigCreateBulk {
  890. return &EmployeeConfigCreateBulk{config: c.config, builders: builders}
  891. }
  892. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  893. // a builder and applies setFunc on it.
  894. func (c *EmployeeConfigClient) MapCreateBulk(slice any, setFunc func(*EmployeeConfigCreate, int)) *EmployeeConfigCreateBulk {
  895. rv := reflect.ValueOf(slice)
  896. if rv.Kind() != reflect.Slice {
  897. return &EmployeeConfigCreateBulk{err: fmt.Errorf("calling to EmployeeConfigClient.MapCreateBulk with wrong type %T, need slice", slice)}
  898. }
  899. builders := make([]*EmployeeConfigCreate, rv.Len())
  900. for i := 0; i < rv.Len(); i++ {
  901. builders[i] = c.Create()
  902. setFunc(builders[i], i)
  903. }
  904. return &EmployeeConfigCreateBulk{config: c.config, builders: builders}
  905. }
  906. // Update returns an update builder for EmployeeConfig.
  907. func (c *EmployeeConfigClient) Update() *EmployeeConfigUpdate {
  908. mutation := newEmployeeConfigMutation(c.config, OpUpdate)
  909. return &EmployeeConfigUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  910. }
  911. // UpdateOne returns an update builder for the given entity.
  912. func (c *EmployeeConfigClient) UpdateOne(ec *EmployeeConfig) *EmployeeConfigUpdateOne {
  913. mutation := newEmployeeConfigMutation(c.config, OpUpdateOne, withEmployeeConfig(ec))
  914. return &EmployeeConfigUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  915. }
  916. // UpdateOneID returns an update builder for the given id.
  917. func (c *EmployeeConfigClient) UpdateOneID(id uint64) *EmployeeConfigUpdateOne {
  918. mutation := newEmployeeConfigMutation(c.config, OpUpdateOne, withEmployeeConfigID(id))
  919. return &EmployeeConfigUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  920. }
  921. // Delete returns a delete builder for EmployeeConfig.
  922. func (c *EmployeeConfigClient) Delete() *EmployeeConfigDelete {
  923. mutation := newEmployeeConfigMutation(c.config, OpDelete)
  924. return &EmployeeConfigDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  925. }
  926. // DeleteOne returns a builder for deleting the given entity.
  927. func (c *EmployeeConfigClient) DeleteOne(ec *EmployeeConfig) *EmployeeConfigDeleteOne {
  928. return c.DeleteOneID(ec.ID)
  929. }
  930. // DeleteOneID returns a builder for deleting the given entity by its id.
  931. func (c *EmployeeConfigClient) DeleteOneID(id uint64) *EmployeeConfigDeleteOne {
  932. builder := c.Delete().Where(employeeconfig.ID(id))
  933. builder.mutation.id = &id
  934. builder.mutation.op = OpDeleteOne
  935. return &EmployeeConfigDeleteOne{builder}
  936. }
  937. // Query returns a query builder for EmployeeConfig.
  938. func (c *EmployeeConfigClient) Query() *EmployeeConfigQuery {
  939. return &EmployeeConfigQuery{
  940. config: c.config,
  941. ctx: &QueryContext{Type: TypeEmployeeConfig},
  942. inters: c.Interceptors(),
  943. }
  944. }
  945. // Get returns a EmployeeConfig entity by its id.
  946. func (c *EmployeeConfigClient) Get(ctx context.Context, id uint64) (*EmployeeConfig, error) {
  947. return c.Query().Where(employeeconfig.ID(id)).Only(ctx)
  948. }
  949. // GetX is like Get, but panics if an error occurs.
  950. func (c *EmployeeConfigClient) GetX(ctx context.Context, id uint64) *EmployeeConfig {
  951. obj, err := c.Get(ctx, id)
  952. if err != nil {
  953. panic(err)
  954. }
  955. return obj
  956. }
  957. // Hooks returns the client hooks.
  958. func (c *EmployeeConfigClient) Hooks() []Hook {
  959. hooks := c.hooks.EmployeeConfig
  960. return append(hooks[:len(hooks):len(hooks)], employeeconfig.Hooks[:]...)
  961. }
  962. // Interceptors returns the client interceptors.
  963. func (c *EmployeeConfigClient) Interceptors() []Interceptor {
  964. inters := c.inters.EmployeeConfig
  965. return append(inters[:len(inters):len(inters)], employeeconfig.Interceptors[:]...)
  966. }
  967. func (c *EmployeeConfigClient) mutate(ctx context.Context, m *EmployeeConfigMutation) (Value, error) {
  968. switch m.Op() {
  969. case OpCreate:
  970. return (&EmployeeConfigCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  971. case OpUpdate:
  972. return (&EmployeeConfigUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  973. case OpUpdateOne:
  974. return (&EmployeeConfigUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  975. case OpDelete, OpDeleteOne:
  976. return (&EmployeeConfigDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  977. default:
  978. return nil, fmt.Errorf("ent: unknown EmployeeConfig mutation op: %q", m.Op())
  979. }
  980. }
  981. // LabelClient is a client for the Label schema.
  982. type LabelClient struct {
  983. config
  984. }
  985. // NewLabelClient returns a client for the Label from the given config.
  986. func NewLabelClient(c config) *LabelClient {
  987. return &LabelClient{config: c}
  988. }
  989. // Use adds a list of mutation hooks to the hooks stack.
  990. // A call to `Use(f, g, h)` equals to `label.Hooks(f(g(h())))`.
  991. func (c *LabelClient) Use(hooks ...Hook) {
  992. c.hooks.Label = append(c.hooks.Label, hooks...)
  993. }
  994. // Intercept adds a list of query interceptors to the interceptors stack.
  995. // A call to `Intercept(f, g, h)` equals to `label.Intercept(f(g(h())))`.
  996. func (c *LabelClient) Intercept(interceptors ...Interceptor) {
  997. c.inters.Label = append(c.inters.Label, interceptors...)
  998. }
  999. // Create returns a builder for creating a Label entity.
  1000. func (c *LabelClient) Create() *LabelCreate {
  1001. mutation := newLabelMutation(c.config, OpCreate)
  1002. return &LabelCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1003. }
  1004. // CreateBulk returns a builder for creating a bulk of Label entities.
  1005. func (c *LabelClient) CreateBulk(builders ...*LabelCreate) *LabelCreateBulk {
  1006. return &LabelCreateBulk{config: c.config, builders: builders}
  1007. }
  1008. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1009. // a builder and applies setFunc on it.
  1010. func (c *LabelClient) MapCreateBulk(slice any, setFunc func(*LabelCreate, int)) *LabelCreateBulk {
  1011. rv := reflect.ValueOf(slice)
  1012. if rv.Kind() != reflect.Slice {
  1013. return &LabelCreateBulk{err: fmt.Errorf("calling to LabelClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1014. }
  1015. builders := make([]*LabelCreate, rv.Len())
  1016. for i := 0; i < rv.Len(); i++ {
  1017. builders[i] = c.Create()
  1018. setFunc(builders[i], i)
  1019. }
  1020. return &LabelCreateBulk{config: c.config, builders: builders}
  1021. }
  1022. // Update returns an update builder for Label.
  1023. func (c *LabelClient) Update() *LabelUpdate {
  1024. mutation := newLabelMutation(c.config, OpUpdate)
  1025. return &LabelUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1026. }
  1027. // UpdateOne returns an update builder for the given entity.
  1028. func (c *LabelClient) UpdateOne(l *Label) *LabelUpdateOne {
  1029. mutation := newLabelMutation(c.config, OpUpdateOne, withLabel(l))
  1030. return &LabelUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1031. }
  1032. // UpdateOneID returns an update builder for the given id.
  1033. func (c *LabelClient) UpdateOneID(id uint64) *LabelUpdateOne {
  1034. mutation := newLabelMutation(c.config, OpUpdateOne, withLabelID(id))
  1035. return &LabelUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1036. }
  1037. // Delete returns a delete builder for Label.
  1038. func (c *LabelClient) Delete() *LabelDelete {
  1039. mutation := newLabelMutation(c.config, OpDelete)
  1040. return &LabelDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1041. }
  1042. // DeleteOne returns a builder for deleting the given entity.
  1043. func (c *LabelClient) DeleteOne(l *Label) *LabelDeleteOne {
  1044. return c.DeleteOneID(l.ID)
  1045. }
  1046. // DeleteOneID returns a builder for deleting the given entity by its id.
  1047. func (c *LabelClient) DeleteOneID(id uint64) *LabelDeleteOne {
  1048. builder := c.Delete().Where(label.ID(id))
  1049. builder.mutation.id = &id
  1050. builder.mutation.op = OpDeleteOne
  1051. return &LabelDeleteOne{builder}
  1052. }
  1053. // Query returns a query builder for Label.
  1054. func (c *LabelClient) Query() *LabelQuery {
  1055. return &LabelQuery{
  1056. config: c.config,
  1057. ctx: &QueryContext{Type: TypeLabel},
  1058. inters: c.Interceptors(),
  1059. }
  1060. }
  1061. // Get returns a Label entity by its id.
  1062. func (c *LabelClient) Get(ctx context.Context, id uint64) (*Label, error) {
  1063. return c.Query().Where(label.ID(id)).Only(ctx)
  1064. }
  1065. // GetX is like Get, but panics if an error occurs.
  1066. func (c *LabelClient) GetX(ctx context.Context, id uint64) *Label {
  1067. obj, err := c.Get(ctx, id)
  1068. if err != nil {
  1069. panic(err)
  1070. }
  1071. return obj
  1072. }
  1073. // QueryLabelRelationships queries the label_relationships edge of a Label.
  1074. func (c *LabelClient) QueryLabelRelationships(l *Label) *LabelRelationshipQuery {
  1075. query := (&LabelRelationshipClient{config: c.config}).Query()
  1076. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1077. id := l.ID
  1078. step := sqlgraph.NewStep(
  1079. sqlgraph.From(label.Table, label.FieldID, id),
  1080. sqlgraph.To(labelrelationship.Table, labelrelationship.FieldID),
  1081. sqlgraph.Edge(sqlgraph.O2M, false, label.LabelRelationshipsTable, label.LabelRelationshipsColumn),
  1082. )
  1083. fromV = sqlgraph.Neighbors(l.driver.Dialect(), step)
  1084. return fromV, nil
  1085. }
  1086. return query
  1087. }
  1088. // Hooks returns the client hooks.
  1089. func (c *LabelClient) Hooks() []Hook {
  1090. return c.hooks.Label
  1091. }
  1092. // Interceptors returns the client interceptors.
  1093. func (c *LabelClient) Interceptors() []Interceptor {
  1094. return c.inters.Label
  1095. }
  1096. func (c *LabelClient) mutate(ctx context.Context, m *LabelMutation) (Value, error) {
  1097. switch m.Op() {
  1098. case OpCreate:
  1099. return (&LabelCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1100. case OpUpdate:
  1101. return (&LabelUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1102. case OpUpdateOne:
  1103. return (&LabelUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1104. case OpDelete, OpDeleteOne:
  1105. return (&LabelDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1106. default:
  1107. return nil, fmt.Errorf("ent: unknown Label mutation op: %q", m.Op())
  1108. }
  1109. }
  1110. // LabelRelationshipClient is a client for the LabelRelationship schema.
  1111. type LabelRelationshipClient struct {
  1112. config
  1113. }
  1114. // NewLabelRelationshipClient returns a client for the LabelRelationship from the given config.
  1115. func NewLabelRelationshipClient(c config) *LabelRelationshipClient {
  1116. return &LabelRelationshipClient{config: c}
  1117. }
  1118. // Use adds a list of mutation hooks to the hooks stack.
  1119. // A call to `Use(f, g, h)` equals to `labelrelationship.Hooks(f(g(h())))`.
  1120. func (c *LabelRelationshipClient) Use(hooks ...Hook) {
  1121. c.hooks.LabelRelationship = append(c.hooks.LabelRelationship, hooks...)
  1122. }
  1123. // Intercept adds a list of query interceptors to the interceptors stack.
  1124. // A call to `Intercept(f, g, h)` equals to `labelrelationship.Intercept(f(g(h())))`.
  1125. func (c *LabelRelationshipClient) Intercept(interceptors ...Interceptor) {
  1126. c.inters.LabelRelationship = append(c.inters.LabelRelationship, interceptors...)
  1127. }
  1128. // Create returns a builder for creating a LabelRelationship entity.
  1129. func (c *LabelRelationshipClient) Create() *LabelRelationshipCreate {
  1130. mutation := newLabelRelationshipMutation(c.config, OpCreate)
  1131. return &LabelRelationshipCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1132. }
  1133. // CreateBulk returns a builder for creating a bulk of LabelRelationship entities.
  1134. func (c *LabelRelationshipClient) CreateBulk(builders ...*LabelRelationshipCreate) *LabelRelationshipCreateBulk {
  1135. return &LabelRelationshipCreateBulk{config: c.config, builders: builders}
  1136. }
  1137. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1138. // a builder and applies setFunc on it.
  1139. func (c *LabelRelationshipClient) MapCreateBulk(slice any, setFunc func(*LabelRelationshipCreate, int)) *LabelRelationshipCreateBulk {
  1140. rv := reflect.ValueOf(slice)
  1141. if rv.Kind() != reflect.Slice {
  1142. return &LabelRelationshipCreateBulk{err: fmt.Errorf("calling to LabelRelationshipClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1143. }
  1144. builders := make([]*LabelRelationshipCreate, rv.Len())
  1145. for i := 0; i < rv.Len(); i++ {
  1146. builders[i] = c.Create()
  1147. setFunc(builders[i], i)
  1148. }
  1149. return &LabelRelationshipCreateBulk{config: c.config, builders: builders}
  1150. }
  1151. // Update returns an update builder for LabelRelationship.
  1152. func (c *LabelRelationshipClient) Update() *LabelRelationshipUpdate {
  1153. mutation := newLabelRelationshipMutation(c.config, OpUpdate)
  1154. return &LabelRelationshipUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1155. }
  1156. // UpdateOne returns an update builder for the given entity.
  1157. func (c *LabelRelationshipClient) UpdateOne(lr *LabelRelationship) *LabelRelationshipUpdateOne {
  1158. mutation := newLabelRelationshipMutation(c.config, OpUpdateOne, withLabelRelationship(lr))
  1159. return &LabelRelationshipUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1160. }
  1161. // UpdateOneID returns an update builder for the given id.
  1162. func (c *LabelRelationshipClient) UpdateOneID(id uint64) *LabelRelationshipUpdateOne {
  1163. mutation := newLabelRelationshipMutation(c.config, OpUpdateOne, withLabelRelationshipID(id))
  1164. return &LabelRelationshipUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1165. }
  1166. // Delete returns a delete builder for LabelRelationship.
  1167. func (c *LabelRelationshipClient) Delete() *LabelRelationshipDelete {
  1168. mutation := newLabelRelationshipMutation(c.config, OpDelete)
  1169. return &LabelRelationshipDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1170. }
  1171. // DeleteOne returns a builder for deleting the given entity.
  1172. func (c *LabelRelationshipClient) DeleteOne(lr *LabelRelationship) *LabelRelationshipDeleteOne {
  1173. return c.DeleteOneID(lr.ID)
  1174. }
  1175. // DeleteOneID returns a builder for deleting the given entity by its id.
  1176. func (c *LabelRelationshipClient) DeleteOneID(id uint64) *LabelRelationshipDeleteOne {
  1177. builder := c.Delete().Where(labelrelationship.ID(id))
  1178. builder.mutation.id = &id
  1179. builder.mutation.op = OpDeleteOne
  1180. return &LabelRelationshipDeleteOne{builder}
  1181. }
  1182. // Query returns a query builder for LabelRelationship.
  1183. func (c *LabelRelationshipClient) Query() *LabelRelationshipQuery {
  1184. return &LabelRelationshipQuery{
  1185. config: c.config,
  1186. ctx: &QueryContext{Type: TypeLabelRelationship},
  1187. inters: c.Interceptors(),
  1188. }
  1189. }
  1190. // Get returns a LabelRelationship entity by its id.
  1191. func (c *LabelRelationshipClient) Get(ctx context.Context, id uint64) (*LabelRelationship, error) {
  1192. return c.Query().Where(labelrelationship.ID(id)).Only(ctx)
  1193. }
  1194. // GetX is like Get, but panics if an error occurs.
  1195. func (c *LabelRelationshipClient) GetX(ctx context.Context, id uint64) *LabelRelationship {
  1196. obj, err := c.Get(ctx, id)
  1197. if err != nil {
  1198. panic(err)
  1199. }
  1200. return obj
  1201. }
  1202. // QueryContacts queries the contacts edge of a LabelRelationship.
  1203. func (c *LabelRelationshipClient) QueryContacts(lr *LabelRelationship) *ContactQuery {
  1204. query := (&ContactClient{config: c.config}).Query()
  1205. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1206. id := lr.ID
  1207. step := sqlgraph.NewStep(
  1208. sqlgraph.From(labelrelationship.Table, labelrelationship.FieldID, id),
  1209. sqlgraph.To(contact.Table, contact.FieldID),
  1210. sqlgraph.Edge(sqlgraph.M2O, true, labelrelationship.ContactsTable, labelrelationship.ContactsColumn),
  1211. )
  1212. fromV = sqlgraph.Neighbors(lr.driver.Dialect(), step)
  1213. return fromV, nil
  1214. }
  1215. return query
  1216. }
  1217. // QueryLabels queries the labels edge of a LabelRelationship.
  1218. func (c *LabelRelationshipClient) QueryLabels(lr *LabelRelationship) *LabelQuery {
  1219. query := (&LabelClient{config: c.config}).Query()
  1220. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1221. id := lr.ID
  1222. step := sqlgraph.NewStep(
  1223. sqlgraph.From(labelrelationship.Table, labelrelationship.FieldID, id),
  1224. sqlgraph.To(label.Table, label.FieldID),
  1225. sqlgraph.Edge(sqlgraph.M2O, true, labelrelationship.LabelsTable, labelrelationship.LabelsColumn),
  1226. )
  1227. fromV = sqlgraph.Neighbors(lr.driver.Dialect(), step)
  1228. return fromV, nil
  1229. }
  1230. return query
  1231. }
  1232. // Hooks returns the client hooks.
  1233. func (c *LabelRelationshipClient) Hooks() []Hook {
  1234. hooks := c.hooks.LabelRelationship
  1235. return append(hooks[:len(hooks):len(hooks)], labelrelationship.Hooks[:]...)
  1236. }
  1237. // Interceptors returns the client interceptors.
  1238. func (c *LabelRelationshipClient) Interceptors() []Interceptor {
  1239. inters := c.inters.LabelRelationship
  1240. return append(inters[:len(inters):len(inters)], labelrelationship.Interceptors[:]...)
  1241. }
  1242. func (c *LabelRelationshipClient) mutate(ctx context.Context, m *LabelRelationshipMutation) (Value, error) {
  1243. switch m.Op() {
  1244. case OpCreate:
  1245. return (&LabelRelationshipCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1246. case OpUpdate:
  1247. return (&LabelRelationshipUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1248. case OpUpdateOne:
  1249. return (&LabelRelationshipUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1250. case OpDelete, OpDeleteOne:
  1251. return (&LabelRelationshipDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1252. default:
  1253. return nil, fmt.Errorf("ent: unknown LabelRelationship mutation op: %q", m.Op())
  1254. }
  1255. }
  1256. // MessageClient is a client for the Message schema.
  1257. type MessageClient struct {
  1258. config
  1259. }
  1260. // NewMessageClient returns a client for the Message from the given config.
  1261. func NewMessageClient(c config) *MessageClient {
  1262. return &MessageClient{config: c}
  1263. }
  1264. // Use adds a list of mutation hooks to the hooks stack.
  1265. // A call to `Use(f, g, h)` equals to `message.Hooks(f(g(h())))`.
  1266. func (c *MessageClient) Use(hooks ...Hook) {
  1267. c.hooks.Message = append(c.hooks.Message, hooks...)
  1268. }
  1269. // Intercept adds a list of query interceptors to the interceptors stack.
  1270. // A call to `Intercept(f, g, h)` equals to `message.Intercept(f(g(h())))`.
  1271. func (c *MessageClient) Intercept(interceptors ...Interceptor) {
  1272. c.inters.Message = append(c.inters.Message, interceptors...)
  1273. }
  1274. // Create returns a builder for creating a Message entity.
  1275. func (c *MessageClient) Create() *MessageCreate {
  1276. mutation := newMessageMutation(c.config, OpCreate)
  1277. return &MessageCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1278. }
  1279. // CreateBulk returns a builder for creating a bulk of Message entities.
  1280. func (c *MessageClient) CreateBulk(builders ...*MessageCreate) *MessageCreateBulk {
  1281. return &MessageCreateBulk{config: c.config, builders: builders}
  1282. }
  1283. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1284. // a builder and applies setFunc on it.
  1285. func (c *MessageClient) MapCreateBulk(slice any, setFunc func(*MessageCreate, int)) *MessageCreateBulk {
  1286. rv := reflect.ValueOf(slice)
  1287. if rv.Kind() != reflect.Slice {
  1288. return &MessageCreateBulk{err: fmt.Errorf("calling to MessageClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1289. }
  1290. builders := make([]*MessageCreate, rv.Len())
  1291. for i := 0; i < rv.Len(); i++ {
  1292. builders[i] = c.Create()
  1293. setFunc(builders[i], i)
  1294. }
  1295. return &MessageCreateBulk{config: c.config, builders: builders}
  1296. }
  1297. // Update returns an update builder for Message.
  1298. func (c *MessageClient) Update() *MessageUpdate {
  1299. mutation := newMessageMutation(c.config, OpUpdate)
  1300. return &MessageUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1301. }
  1302. // UpdateOne returns an update builder for the given entity.
  1303. func (c *MessageClient) UpdateOne(m *Message) *MessageUpdateOne {
  1304. mutation := newMessageMutation(c.config, OpUpdateOne, withMessage(m))
  1305. return &MessageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1306. }
  1307. // UpdateOneID returns an update builder for the given id.
  1308. func (c *MessageClient) UpdateOneID(id int) *MessageUpdateOne {
  1309. mutation := newMessageMutation(c.config, OpUpdateOne, withMessageID(id))
  1310. return &MessageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1311. }
  1312. // Delete returns a delete builder for Message.
  1313. func (c *MessageClient) Delete() *MessageDelete {
  1314. mutation := newMessageMutation(c.config, OpDelete)
  1315. return &MessageDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1316. }
  1317. // DeleteOne returns a builder for deleting the given entity.
  1318. func (c *MessageClient) DeleteOne(m *Message) *MessageDeleteOne {
  1319. return c.DeleteOneID(m.ID)
  1320. }
  1321. // DeleteOneID returns a builder for deleting the given entity by its id.
  1322. func (c *MessageClient) DeleteOneID(id int) *MessageDeleteOne {
  1323. builder := c.Delete().Where(message.ID(id))
  1324. builder.mutation.id = &id
  1325. builder.mutation.op = OpDeleteOne
  1326. return &MessageDeleteOne{builder}
  1327. }
  1328. // Query returns a query builder for Message.
  1329. func (c *MessageClient) Query() *MessageQuery {
  1330. return &MessageQuery{
  1331. config: c.config,
  1332. ctx: &QueryContext{Type: TypeMessage},
  1333. inters: c.Interceptors(),
  1334. }
  1335. }
  1336. // Get returns a Message entity by its id.
  1337. func (c *MessageClient) Get(ctx context.Context, id int) (*Message, error) {
  1338. return c.Query().Where(message.ID(id)).Only(ctx)
  1339. }
  1340. // GetX is like Get, but panics if an error occurs.
  1341. func (c *MessageClient) GetX(ctx context.Context, id int) *Message {
  1342. obj, err := c.Get(ctx, id)
  1343. if err != nil {
  1344. panic(err)
  1345. }
  1346. return obj
  1347. }
  1348. // Hooks returns the client hooks.
  1349. func (c *MessageClient) Hooks() []Hook {
  1350. return c.hooks.Message
  1351. }
  1352. // Interceptors returns the client interceptors.
  1353. func (c *MessageClient) Interceptors() []Interceptor {
  1354. return c.inters.Message
  1355. }
  1356. func (c *MessageClient) mutate(ctx context.Context, m *MessageMutation) (Value, error) {
  1357. switch m.Op() {
  1358. case OpCreate:
  1359. return (&MessageCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1360. case OpUpdate:
  1361. return (&MessageUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1362. case OpUpdateOne:
  1363. return (&MessageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1364. case OpDelete, OpDeleteOne:
  1365. return (&MessageDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1366. default:
  1367. return nil, fmt.Errorf("ent: unknown Message mutation op: %q", m.Op())
  1368. }
  1369. }
  1370. // MessageRecordsClient is a client for the MessageRecords schema.
  1371. type MessageRecordsClient struct {
  1372. config
  1373. }
  1374. // NewMessageRecordsClient returns a client for the MessageRecords from the given config.
  1375. func NewMessageRecordsClient(c config) *MessageRecordsClient {
  1376. return &MessageRecordsClient{config: c}
  1377. }
  1378. // Use adds a list of mutation hooks to the hooks stack.
  1379. // A call to `Use(f, g, h)` equals to `messagerecords.Hooks(f(g(h())))`.
  1380. func (c *MessageRecordsClient) Use(hooks ...Hook) {
  1381. c.hooks.MessageRecords = append(c.hooks.MessageRecords, hooks...)
  1382. }
  1383. // Intercept adds a list of query interceptors to the interceptors stack.
  1384. // A call to `Intercept(f, g, h)` equals to `messagerecords.Intercept(f(g(h())))`.
  1385. func (c *MessageRecordsClient) Intercept(interceptors ...Interceptor) {
  1386. c.inters.MessageRecords = append(c.inters.MessageRecords, interceptors...)
  1387. }
  1388. // Create returns a builder for creating a MessageRecords entity.
  1389. func (c *MessageRecordsClient) Create() *MessageRecordsCreate {
  1390. mutation := newMessageRecordsMutation(c.config, OpCreate)
  1391. return &MessageRecordsCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1392. }
  1393. // CreateBulk returns a builder for creating a bulk of MessageRecords entities.
  1394. func (c *MessageRecordsClient) CreateBulk(builders ...*MessageRecordsCreate) *MessageRecordsCreateBulk {
  1395. return &MessageRecordsCreateBulk{config: c.config, builders: builders}
  1396. }
  1397. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1398. // a builder and applies setFunc on it.
  1399. func (c *MessageRecordsClient) MapCreateBulk(slice any, setFunc func(*MessageRecordsCreate, int)) *MessageRecordsCreateBulk {
  1400. rv := reflect.ValueOf(slice)
  1401. if rv.Kind() != reflect.Slice {
  1402. return &MessageRecordsCreateBulk{err: fmt.Errorf("calling to MessageRecordsClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1403. }
  1404. builders := make([]*MessageRecordsCreate, rv.Len())
  1405. for i := 0; i < rv.Len(); i++ {
  1406. builders[i] = c.Create()
  1407. setFunc(builders[i], i)
  1408. }
  1409. return &MessageRecordsCreateBulk{config: c.config, builders: builders}
  1410. }
  1411. // Update returns an update builder for MessageRecords.
  1412. func (c *MessageRecordsClient) Update() *MessageRecordsUpdate {
  1413. mutation := newMessageRecordsMutation(c.config, OpUpdate)
  1414. return &MessageRecordsUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1415. }
  1416. // UpdateOne returns an update builder for the given entity.
  1417. func (c *MessageRecordsClient) UpdateOne(mr *MessageRecords) *MessageRecordsUpdateOne {
  1418. mutation := newMessageRecordsMutation(c.config, OpUpdateOne, withMessageRecords(mr))
  1419. return &MessageRecordsUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1420. }
  1421. // UpdateOneID returns an update builder for the given id.
  1422. func (c *MessageRecordsClient) UpdateOneID(id uint64) *MessageRecordsUpdateOne {
  1423. mutation := newMessageRecordsMutation(c.config, OpUpdateOne, withMessageRecordsID(id))
  1424. return &MessageRecordsUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1425. }
  1426. // Delete returns a delete builder for MessageRecords.
  1427. func (c *MessageRecordsClient) Delete() *MessageRecordsDelete {
  1428. mutation := newMessageRecordsMutation(c.config, OpDelete)
  1429. return &MessageRecordsDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1430. }
  1431. // DeleteOne returns a builder for deleting the given entity.
  1432. func (c *MessageRecordsClient) DeleteOne(mr *MessageRecords) *MessageRecordsDeleteOne {
  1433. return c.DeleteOneID(mr.ID)
  1434. }
  1435. // DeleteOneID returns a builder for deleting the given entity by its id.
  1436. func (c *MessageRecordsClient) DeleteOneID(id uint64) *MessageRecordsDeleteOne {
  1437. builder := c.Delete().Where(messagerecords.ID(id))
  1438. builder.mutation.id = &id
  1439. builder.mutation.op = OpDeleteOne
  1440. return &MessageRecordsDeleteOne{builder}
  1441. }
  1442. // Query returns a query builder for MessageRecords.
  1443. func (c *MessageRecordsClient) Query() *MessageRecordsQuery {
  1444. return &MessageRecordsQuery{
  1445. config: c.config,
  1446. ctx: &QueryContext{Type: TypeMessageRecords},
  1447. inters: c.Interceptors(),
  1448. }
  1449. }
  1450. // Get returns a MessageRecords entity by its id.
  1451. func (c *MessageRecordsClient) Get(ctx context.Context, id uint64) (*MessageRecords, error) {
  1452. return c.Query().Where(messagerecords.ID(id)).Only(ctx)
  1453. }
  1454. // GetX is like Get, but panics if an error occurs.
  1455. func (c *MessageRecordsClient) GetX(ctx context.Context, id uint64) *MessageRecords {
  1456. obj, err := c.Get(ctx, id)
  1457. if err != nil {
  1458. panic(err)
  1459. }
  1460. return obj
  1461. }
  1462. // QuerySopStage queries the sop_stage edge of a MessageRecords.
  1463. func (c *MessageRecordsClient) QuerySopStage(mr *MessageRecords) *SopStageQuery {
  1464. query := (&SopStageClient{config: c.config}).Query()
  1465. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1466. id := mr.ID
  1467. step := sqlgraph.NewStep(
  1468. sqlgraph.From(messagerecords.Table, messagerecords.FieldID, id),
  1469. sqlgraph.To(sopstage.Table, sopstage.FieldID),
  1470. sqlgraph.Edge(sqlgraph.M2O, true, messagerecords.SopStageTable, messagerecords.SopStageColumn),
  1471. )
  1472. fromV = sqlgraph.Neighbors(mr.driver.Dialect(), step)
  1473. return fromV, nil
  1474. }
  1475. return query
  1476. }
  1477. // QuerySopNode queries the sop_node edge of a MessageRecords.
  1478. func (c *MessageRecordsClient) QuerySopNode(mr *MessageRecords) *SopNodeQuery {
  1479. query := (&SopNodeClient{config: c.config}).Query()
  1480. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1481. id := mr.ID
  1482. step := sqlgraph.NewStep(
  1483. sqlgraph.From(messagerecords.Table, messagerecords.FieldID, id),
  1484. sqlgraph.To(sopnode.Table, sopnode.FieldID),
  1485. sqlgraph.Edge(sqlgraph.M2O, true, messagerecords.SopNodeTable, messagerecords.SopNodeColumn),
  1486. )
  1487. fromV = sqlgraph.Neighbors(mr.driver.Dialect(), step)
  1488. return fromV, nil
  1489. }
  1490. return query
  1491. }
  1492. // QueryMessageContact queries the message_contact edge of a MessageRecords.
  1493. func (c *MessageRecordsClient) QueryMessageContact(mr *MessageRecords) *ContactQuery {
  1494. query := (&ContactClient{config: c.config}).Query()
  1495. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1496. id := mr.ID
  1497. step := sqlgraph.NewStep(
  1498. sqlgraph.From(messagerecords.Table, messagerecords.FieldID, id),
  1499. sqlgraph.To(contact.Table, contact.FieldID),
  1500. sqlgraph.Edge(sqlgraph.M2O, true, messagerecords.MessageContactTable, messagerecords.MessageContactColumn),
  1501. )
  1502. fromV = sqlgraph.Neighbors(mr.driver.Dialect(), step)
  1503. return fromV, nil
  1504. }
  1505. return query
  1506. }
  1507. // Hooks returns the client hooks.
  1508. func (c *MessageRecordsClient) Hooks() []Hook {
  1509. hooks := c.hooks.MessageRecords
  1510. return append(hooks[:len(hooks):len(hooks)], messagerecords.Hooks[:]...)
  1511. }
  1512. // Interceptors returns the client interceptors.
  1513. func (c *MessageRecordsClient) Interceptors() []Interceptor {
  1514. inters := c.inters.MessageRecords
  1515. return append(inters[:len(inters):len(inters)], messagerecords.Interceptors[:]...)
  1516. }
  1517. func (c *MessageRecordsClient) mutate(ctx context.Context, m *MessageRecordsMutation) (Value, error) {
  1518. switch m.Op() {
  1519. case OpCreate:
  1520. return (&MessageRecordsCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1521. case OpUpdate:
  1522. return (&MessageRecordsUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1523. case OpUpdateOne:
  1524. return (&MessageRecordsUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1525. case OpDelete, OpDeleteOne:
  1526. return (&MessageRecordsDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1527. default:
  1528. return nil, fmt.Errorf("ent: unknown MessageRecords mutation op: %q", m.Op())
  1529. }
  1530. }
  1531. // MsgClient is a client for the Msg schema.
  1532. type MsgClient struct {
  1533. config
  1534. }
  1535. // NewMsgClient returns a client for the Msg from the given config.
  1536. func NewMsgClient(c config) *MsgClient {
  1537. return &MsgClient{config: c}
  1538. }
  1539. // Use adds a list of mutation hooks to the hooks stack.
  1540. // A call to `Use(f, g, h)` equals to `msg.Hooks(f(g(h())))`.
  1541. func (c *MsgClient) Use(hooks ...Hook) {
  1542. c.hooks.Msg = append(c.hooks.Msg, hooks...)
  1543. }
  1544. // Intercept adds a list of query interceptors to the interceptors stack.
  1545. // A call to `Intercept(f, g, h)` equals to `msg.Intercept(f(g(h())))`.
  1546. func (c *MsgClient) Intercept(interceptors ...Interceptor) {
  1547. c.inters.Msg = append(c.inters.Msg, interceptors...)
  1548. }
  1549. // Create returns a builder for creating a Msg entity.
  1550. func (c *MsgClient) Create() *MsgCreate {
  1551. mutation := newMsgMutation(c.config, OpCreate)
  1552. return &MsgCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1553. }
  1554. // CreateBulk returns a builder for creating a bulk of Msg entities.
  1555. func (c *MsgClient) CreateBulk(builders ...*MsgCreate) *MsgCreateBulk {
  1556. return &MsgCreateBulk{config: c.config, builders: builders}
  1557. }
  1558. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1559. // a builder and applies setFunc on it.
  1560. func (c *MsgClient) MapCreateBulk(slice any, setFunc func(*MsgCreate, int)) *MsgCreateBulk {
  1561. rv := reflect.ValueOf(slice)
  1562. if rv.Kind() != reflect.Slice {
  1563. return &MsgCreateBulk{err: fmt.Errorf("calling to MsgClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1564. }
  1565. builders := make([]*MsgCreate, rv.Len())
  1566. for i := 0; i < rv.Len(); i++ {
  1567. builders[i] = c.Create()
  1568. setFunc(builders[i], i)
  1569. }
  1570. return &MsgCreateBulk{config: c.config, builders: builders}
  1571. }
  1572. // Update returns an update builder for Msg.
  1573. func (c *MsgClient) Update() *MsgUpdate {
  1574. mutation := newMsgMutation(c.config, OpUpdate)
  1575. return &MsgUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1576. }
  1577. // UpdateOne returns an update builder for the given entity.
  1578. func (c *MsgClient) UpdateOne(m *Msg) *MsgUpdateOne {
  1579. mutation := newMsgMutation(c.config, OpUpdateOne, withMsg(m))
  1580. return &MsgUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1581. }
  1582. // UpdateOneID returns an update builder for the given id.
  1583. func (c *MsgClient) UpdateOneID(id uint64) *MsgUpdateOne {
  1584. mutation := newMsgMutation(c.config, OpUpdateOne, withMsgID(id))
  1585. return &MsgUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1586. }
  1587. // Delete returns a delete builder for Msg.
  1588. func (c *MsgClient) Delete() *MsgDelete {
  1589. mutation := newMsgMutation(c.config, OpDelete)
  1590. return &MsgDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1591. }
  1592. // DeleteOne returns a builder for deleting the given entity.
  1593. func (c *MsgClient) DeleteOne(m *Msg) *MsgDeleteOne {
  1594. return c.DeleteOneID(m.ID)
  1595. }
  1596. // DeleteOneID returns a builder for deleting the given entity by its id.
  1597. func (c *MsgClient) DeleteOneID(id uint64) *MsgDeleteOne {
  1598. builder := c.Delete().Where(msg.ID(id))
  1599. builder.mutation.id = &id
  1600. builder.mutation.op = OpDeleteOne
  1601. return &MsgDeleteOne{builder}
  1602. }
  1603. // Query returns a query builder for Msg.
  1604. func (c *MsgClient) Query() *MsgQuery {
  1605. return &MsgQuery{
  1606. config: c.config,
  1607. ctx: &QueryContext{Type: TypeMsg},
  1608. inters: c.Interceptors(),
  1609. }
  1610. }
  1611. // Get returns a Msg entity by its id.
  1612. func (c *MsgClient) Get(ctx context.Context, id uint64) (*Msg, error) {
  1613. return c.Query().Where(msg.ID(id)).Only(ctx)
  1614. }
  1615. // GetX is like Get, but panics if an error occurs.
  1616. func (c *MsgClient) GetX(ctx context.Context, id uint64) *Msg {
  1617. obj, err := c.Get(ctx, id)
  1618. if err != nil {
  1619. panic(err)
  1620. }
  1621. return obj
  1622. }
  1623. // Hooks returns the client hooks.
  1624. func (c *MsgClient) Hooks() []Hook {
  1625. hooks := c.hooks.Msg
  1626. return append(hooks[:len(hooks):len(hooks)], msg.Hooks[:]...)
  1627. }
  1628. // Interceptors returns the client interceptors.
  1629. func (c *MsgClient) Interceptors() []Interceptor {
  1630. inters := c.inters.Msg
  1631. return append(inters[:len(inters):len(inters)], msg.Interceptors[:]...)
  1632. }
  1633. func (c *MsgClient) mutate(ctx context.Context, m *MsgMutation) (Value, error) {
  1634. switch m.Op() {
  1635. case OpCreate:
  1636. return (&MsgCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1637. case OpUpdate:
  1638. return (&MsgUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1639. case OpUpdateOne:
  1640. return (&MsgUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1641. case OpDelete, OpDeleteOne:
  1642. return (&MsgDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1643. default:
  1644. return nil, fmt.Errorf("ent: unknown Msg mutation op: %q", m.Op())
  1645. }
  1646. }
  1647. // ServerClient is a client for the Server schema.
  1648. type ServerClient struct {
  1649. config
  1650. }
  1651. // NewServerClient returns a client for the Server from the given config.
  1652. func NewServerClient(c config) *ServerClient {
  1653. return &ServerClient{config: c}
  1654. }
  1655. // Use adds a list of mutation hooks to the hooks stack.
  1656. // A call to `Use(f, g, h)` equals to `server.Hooks(f(g(h())))`.
  1657. func (c *ServerClient) Use(hooks ...Hook) {
  1658. c.hooks.Server = append(c.hooks.Server, hooks...)
  1659. }
  1660. // Intercept adds a list of query interceptors to the interceptors stack.
  1661. // A call to `Intercept(f, g, h)` equals to `server.Intercept(f(g(h())))`.
  1662. func (c *ServerClient) Intercept(interceptors ...Interceptor) {
  1663. c.inters.Server = append(c.inters.Server, interceptors...)
  1664. }
  1665. // Create returns a builder for creating a Server entity.
  1666. func (c *ServerClient) Create() *ServerCreate {
  1667. mutation := newServerMutation(c.config, OpCreate)
  1668. return &ServerCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1669. }
  1670. // CreateBulk returns a builder for creating a bulk of Server entities.
  1671. func (c *ServerClient) CreateBulk(builders ...*ServerCreate) *ServerCreateBulk {
  1672. return &ServerCreateBulk{config: c.config, builders: builders}
  1673. }
  1674. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1675. // a builder and applies setFunc on it.
  1676. func (c *ServerClient) MapCreateBulk(slice any, setFunc func(*ServerCreate, int)) *ServerCreateBulk {
  1677. rv := reflect.ValueOf(slice)
  1678. if rv.Kind() != reflect.Slice {
  1679. return &ServerCreateBulk{err: fmt.Errorf("calling to ServerClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1680. }
  1681. builders := make([]*ServerCreate, rv.Len())
  1682. for i := 0; i < rv.Len(); i++ {
  1683. builders[i] = c.Create()
  1684. setFunc(builders[i], i)
  1685. }
  1686. return &ServerCreateBulk{config: c.config, builders: builders}
  1687. }
  1688. // Update returns an update builder for Server.
  1689. func (c *ServerClient) Update() *ServerUpdate {
  1690. mutation := newServerMutation(c.config, OpUpdate)
  1691. return &ServerUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1692. }
  1693. // UpdateOne returns an update builder for the given entity.
  1694. func (c *ServerClient) UpdateOne(s *Server) *ServerUpdateOne {
  1695. mutation := newServerMutation(c.config, OpUpdateOne, withServer(s))
  1696. return &ServerUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1697. }
  1698. // UpdateOneID returns an update builder for the given id.
  1699. func (c *ServerClient) UpdateOneID(id uint64) *ServerUpdateOne {
  1700. mutation := newServerMutation(c.config, OpUpdateOne, withServerID(id))
  1701. return &ServerUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1702. }
  1703. // Delete returns a delete builder for Server.
  1704. func (c *ServerClient) Delete() *ServerDelete {
  1705. mutation := newServerMutation(c.config, OpDelete)
  1706. return &ServerDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1707. }
  1708. // DeleteOne returns a builder for deleting the given entity.
  1709. func (c *ServerClient) DeleteOne(s *Server) *ServerDeleteOne {
  1710. return c.DeleteOneID(s.ID)
  1711. }
  1712. // DeleteOneID returns a builder for deleting the given entity by its id.
  1713. func (c *ServerClient) DeleteOneID(id uint64) *ServerDeleteOne {
  1714. builder := c.Delete().Where(server.ID(id))
  1715. builder.mutation.id = &id
  1716. builder.mutation.op = OpDeleteOne
  1717. return &ServerDeleteOne{builder}
  1718. }
  1719. // Query returns a query builder for Server.
  1720. func (c *ServerClient) Query() *ServerQuery {
  1721. return &ServerQuery{
  1722. config: c.config,
  1723. ctx: &QueryContext{Type: TypeServer},
  1724. inters: c.Interceptors(),
  1725. }
  1726. }
  1727. // Get returns a Server entity by its id.
  1728. func (c *ServerClient) Get(ctx context.Context, id uint64) (*Server, error) {
  1729. return c.Query().Where(server.ID(id)).Only(ctx)
  1730. }
  1731. // GetX is like Get, but panics if an error occurs.
  1732. func (c *ServerClient) GetX(ctx context.Context, id uint64) *Server {
  1733. obj, err := c.Get(ctx, id)
  1734. if err != nil {
  1735. panic(err)
  1736. }
  1737. return obj
  1738. }
  1739. // QueryWxs queries the wxs edge of a Server.
  1740. func (c *ServerClient) QueryWxs(s *Server) *WxQuery {
  1741. query := (&WxClient{config: c.config}).Query()
  1742. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1743. id := s.ID
  1744. step := sqlgraph.NewStep(
  1745. sqlgraph.From(server.Table, server.FieldID, id),
  1746. sqlgraph.To(wx.Table, wx.FieldID),
  1747. sqlgraph.Edge(sqlgraph.O2M, false, server.WxsTable, server.WxsColumn),
  1748. )
  1749. fromV = sqlgraph.Neighbors(s.driver.Dialect(), step)
  1750. return fromV, nil
  1751. }
  1752. return query
  1753. }
  1754. // Hooks returns the client hooks.
  1755. func (c *ServerClient) Hooks() []Hook {
  1756. hooks := c.hooks.Server
  1757. return append(hooks[:len(hooks):len(hooks)], server.Hooks[:]...)
  1758. }
  1759. // Interceptors returns the client interceptors.
  1760. func (c *ServerClient) Interceptors() []Interceptor {
  1761. inters := c.inters.Server
  1762. return append(inters[:len(inters):len(inters)], server.Interceptors[:]...)
  1763. }
  1764. func (c *ServerClient) mutate(ctx context.Context, m *ServerMutation) (Value, error) {
  1765. switch m.Op() {
  1766. case OpCreate:
  1767. return (&ServerCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1768. case OpUpdate:
  1769. return (&ServerUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1770. case OpUpdateOne:
  1771. return (&ServerUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1772. case OpDelete, OpDeleteOne:
  1773. return (&ServerDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1774. default:
  1775. return nil, fmt.Errorf("ent: unknown Server mutation op: %q", m.Op())
  1776. }
  1777. }
  1778. // SopNodeClient is a client for the SopNode schema.
  1779. type SopNodeClient struct {
  1780. config
  1781. }
  1782. // NewSopNodeClient returns a client for the SopNode from the given config.
  1783. func NewSopNodeClient(c config) *SopNodeClient {
  1784. return &SopNodeClient{config: c}
  1785. }
  1786. // Use adds a list of mutation hooks to the hooks stack.
  1787. // A call to `Use(f, g, h)` equals to `sopnode.Hooks(f(g(h())))`.
  1788. func (c *SopNodeClient) Use(hooks ...Hook) {
  1789. c.hooks.SopNode = append(c.hooks.SopNode, hooks...)
  1790. }
  1791. // Intercept adds a list of query interceptors to the interceptors stack.
  1792. // A call to `Intercept(f, g, h)` equals to `sopnode.Intercept(f(g(h())))`.
  1793. func (c *SopNodeClient) Intercept(interceptors ...Interceptor) {
  1794. c.inters.SopNode = append(c.inters.SopNode, interceptors...)
  1795. }
  1796. // Create returns a builder for creating a SopNode entity.
  1797. func (c *SopNodeClient) Create() *SopNodeCreate {
  1798. mutation := newSopNodeMutation(c.config, OpCreate)
  1799. return &SopNodeCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1800. }
  1801. // CreateBulk returns a builder for creating a bulk of SopNode entities.
  1802. func (c *SopNodeClient) CreateBulk(builders ...*SopNodeCreate) *SopNodeCreateBulk {
  1803. return &SopNodeCreateBulk{config: c.config, builders: builders}
  1804. }
  1805. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1806. // a builder and applies setFunc on it.
  1807. func (c *SopNodeClient) MapCreateBulk(slice any, setFunc func(*SopNodeCreate, int)) *SopNodeCreateBulk {
  1808. rv := reflect.ValueOf(slice)
  1809. if rv.Kind() != reflect.Slice {
  1810. return &SopNodeCreateBulk{err: fmt.Errorf("calling to SopNodeClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1811. }
  1812. builders := make([]*SopNodeCreate, rv.Len())
  1813. for i := 0; i < rv.Len(); i++ {
  1814. builders[i] = c.Create()
  1815. setFunc(builders[i], i)
  1816. }
  1817. return &SopNodeCreateBulk{config: c.config, builders: builders}
  1818. }
  1819. // Update returns an update builder for SopNode.
  1820. func (c *SopNodeClient) Update() *SopNodeUpdate {
  1821. mutation := newSopNodeMutation(c.config, OpUpdate)
  1822. return &SopNodeUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1823. }
  1824. // UpdateOne returns an update builder for the given entity.
  1825. func (c *SopNodeClient) UpdateOne(sn *SopNode) *SopNodeUpdateOne {
  1826. mutation := newSopNodeMutation(c.config, OpUpdateOne, withSopNode(sn))
  1827. return &SopNodeUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1828. }
  1829. // UpdateOneID returns an update builder for the given id.
  1830. func (c *SopNodeClient) UpdateOneID(id uint64) *SopNodeUpdateOne {
  1831. mutation := newSopNodeMutation(c.config, OpUpdateOne, withSopNodeID(id))
  1832. return &SopNodeUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1833. }
  1834. // Delete returns a delete builder for SopNode.
  1835. func (c *SopNodeClient) Delete() *SopNodeDelete {
  1836. mutation := newSopNodeMutation(c.config, OpDelete)
  1837. return &SopNodeDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1838. }
  1839. // DeleteOne returns a builder for deleting the given entity.
  1840. func (c *SopNodeClient) DeleteOne(sn *SopNode) *SopNodeDeleteOne {
  1841. return c.DeleteOneID(sn.ID)
  1842. }
  1843. // DeleteOneID returns a builder for deleting the given entity by its id.
  1844. func (c *SopNodeClient) DeleteOneID(id uint64) *SopNodeDeleteOne {
  1845. builder := c.Delete().Where(sopnode.ID(id))
  1846. builder.mutation.id = &id
  1847. builder.mutation.op = OpDeleteOne
  1848. return &SopNodeDeleteOne{builder}
  1849. }
  1850. // Query returns a query builder for SopNode.
  1851. func (c *SopNodeClient) Query() *SopNodeQuery {
  1852. return &SopNodeQuery{
  1853. config: c.config,
  1854. ctx: &QueryContext{Type: TypeSopNode},
  1855. inters: c.Interceptors(),
  1856. }
  1857. }
  1858. // Get returns a SopNode entity by its id.
  1859. func (c *SopNodeClient) Get(ctx context.Context, id uint64) (*SopNode, error) {
  1860. return c.Query().Where(sopnode.ID(id)).Only(ctx)
  1861. }
  1862. // GetX is like Get, but panics if an error occurs.
  1863. func (c *SopNodeClient) GetX(ctx context.Context, id uint64) *SopNode {
  1864. obj, err := c.Get(ctx, id)
  1865. if err != nil {
  1866. panic(err)
  1867. }
  1868. return obj
  1869. }
  1870. // QuerySopStage queries the sop_stage edge of a SopNode.
  1871. func (c *SopNodeClient) QuerySopStage(sn *SopNode) *SopStageQuery {
  1872. query := (&SopStageClient{config: c.config}).Query()
  1873. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1874. id := sn.ID
  1875. step := sqlgraph.NewStep(
  1876. sqlgraph.From(sopnode.Table, sopnode.FieldID, id),
  1877. sqlgraph.To(sopstage.Table, sopstage.FieldID),
  1878. sqlgraph.Edge(sqlgraph.M2O, true, sopnode.SopStageTable, sopnode.SopStageColumn),
  1879. )
  1880. fromV = sqlgraph.Neighbors(sn.driver.Dialect(), step)
  1881. return fromV, nil
  1882. }
  1883. return query
  1884. }
  1885. // QueryNodeMessages queries the node_messages edge of a SopNode.
  1886. func (c *SopNodeClient) QueryNodeMessages(sn *SopNode) *MessageRecordsQuery {
  1887. query := (&MessageRecordsClient{config: c.config}).Query()
  1888. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  1889. id := sn.ID
  1890. step := sqlgraph.NewStep(
  1891. sqlgraph.From(sopnode.Table, sopnode.FieldID, id),
  1892. sqlgraph.To(messagerecords.Table, messagerecords.FieldID),
  1893. sqlgraph.Edge(sqlgraph.O2M, false, sopnode.NodeMessagesTable, sopnode.NodeMessagesColumn),
  1894. )
  1895. fromV = sqlgraph.Neighbors(sn.driver.Dialect(), step)
  1896. return fromV, nil
  1897. }
  1898. return query
  1899. }
  1900. // Hooks returns the client hooks.
  1901. func (c *SopNodeClient) Hooks() []Hook {
  1902. hooks := c.hooks.SopNode
  1903. return append(hooks[:len(hooks):len(hooks)], sopnode.Hooks[:]...)
  1904. }
  1905. // Interceptors returns the client interceptors.
  1906. func (c *SopNodeClient) Interceptors() []Interceptor {
  1907. inters := c.inters.SopNode
  1908. return append(inters[:len(inters):len(inters)], sopnode.Interceptors[:]...)
  1909. }
  1910. func (c *SopNodeClient) mutate(ctx context.Context, m *SopNodeMutation) (Value, error) {
  1911. switch m.Op() {
  1912. case OpCreate:
  1913. return (&SopNodeCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1914. case OpUpdate:
  1915. return (&SopNodeUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1916. case OpUpdateOne:
  1917. return (&SopNodeUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  1918. case OpDelete, OpDeleteOne:
  1919. return (&SopNodeDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  1920. default:
  1921. return nil, fmt.Errorf("ent: unknown SopNode mutation op: %q", m.Op())
  1922. }
  1923. }
  1924. // SopStageClient is a client for the SopStage schema.
  1925. type SopStageClient struct {
  1926. config
  1927. }
  1928. // NewSopStageClient returns a client for the SopStage from the given config.
  1929. func NewSopStageClient(c config) *SopStageClient {
  1930. return &SopStageClient{config: c}
  1931. }
  1932. // Use adds a list of mutation hooks to the hooks stack.
  1933. // A call to `Use(f, g, h)` equals to `sopstage.Hooks(f(g(h())))`.
  1934. func (c *SopStageClient) Use(hooks ...Hook) {
  1935. c.hooks.SopStage = append(c.hooks.SopStage, hooks...)
  1936. }
  1937. // Intercept adds a list of query interceptors to the interceptors stack.
  1938. // A call to `Intercept(f, g, h)` equals to `sopstage.Intercept(f(g(h())))`.
  1939. func (c *SopStageClient) Intercept(interceptors ...Interceptor) {
  1940. c.inters.SopStage = append(c.inters.SopStage, interceptors...)
  1941. }
  1942. // Create returns a builder for creating a SopStage entity.
  1943. func (c *SopStageClient) Create() *SopStageCreate {
  1944. mutation := newSopStageMutation(c.config, OpCreate)
  1945. return &SopStageCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1946. }
  1947. // CreateBulk returns a builder for creating a bulk of SopStage entities.
  1948. func (c *SopStageClient) CreateBulk(builders ...*SopStageCreate) *SopStageCreateBulk {
  1949. return &SopStageCreateBulk{config: c.config, builders: builders}
  1950. }
  1951. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  1952. // a builder and applies setFunc on it.
  1953. func (c *SopStageClient) MapCreateBulk(slice any, setFunc func(*SopStageCreate, int)) *SopStageCreateBulk {
  1954. rv := reflect.ValueOf(slice)
  1955. if rv.Kind() != reflect.Slice {
  1956. return &SopStageCreateBulk{err: fmt.Errorf("calling to SopStageClient.MapCreateBulk with wrong type %T, need slice", slice)}
  1957. }
  1958. builders := make([]*SopStageCreate, rv.Len())
  1959. for i := 0; i < rv.Len(); i++ {
  1960. builders[i] = c.Create()
  1961. setFunc(builders[i], i)
  1962. }
  1963. return &SopStageCreateBulk{config: c.config, builders: builders}
  1964. }
  1965. // Update returns an update builder for SopStage.
  1966. func (c *SopStageClient) Update() *SopStageUpdate {
  1967. mutation := newSopStageMutation(c.config, OpUpdate)
  1968. return &SopStageUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1969. }
  1970. // UpdateOne returns an update builder for the given entity.
  1971. func (c *SopStageClient) UpdateOne(ss *SopStage) *SopStageUpdateOne {
  1972. mutation := newSopStageMutation(c.config, OpUpdateOne, withSopStage(ss))
  1973. return &SopStageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1974. }
  1975. // UpdateOneID returns an update builder for the given id.
  1976. func (c *SopStageClient) UpdateOneID(id uint64) *SopStageUpdateOne {
  1977. mutation := newSopStageMutation(c.config, OpUpdateOne, withSopStageID(id))
  1978. return &SopStageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1979. }
  1980. // Delete returns a delete builder for SopStage.
  1981. func (c *SopStageClient) Delete() *SopStageDelete {
  1982. mutation := newSopStageMutation(c.config, OpDelete)
  1983. return &SopStageDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  1984. }
  1985. // DeleteOne returns a builder for deleting the given entity.
  1986. func (c *SopStageClient) DeleteOne(ss *SopStage) *SopStageDeleteOne {
  1987. return c.DeleteOneID(ss.ID)
  1988. }
  1989. // DeleteOneID returns a builder for deleting the given entity by its id.
  1990. func (c *SopStageClient) DeleteOneID(id uint64) *SopStageDeleteOne {
  1991. builder := c.Delete().Where(sopstage.ID(id))
  1992. builder.mutation.id = &id
  1993. builder.mutation.op = OpDeleteOne
  1994. return &SopStageDeleteOne{builder}
  1995. }
  1996. // Query returns a query builder for SopStage.
  1997. func (c *SopStageClient) Query() *SopStageQuery {
  1998. return &SopStageQuery{
  1999. config: c.config,
  2000. ctx: &QueryContext{Type: TypeSopStage},
  2001. inters: c.Interceptors(),
  2002. }
  2003. }
  2004. // Get returns a SopStage entity by its id.
  2005. func (c *SopStageClient) Get(ctx context.Context, id uint64) (*SopStage, error) {
  2006. return c.Query().Where(sopstage.ID(id)).Only(ctx)
  2007. }
  2008. // GetX is like Get, but panics if an error occurs.
  2009. func (c *SopStageClient) GetX(ctx context.Context, id uint64) *SopStage {
  2010. obj, err := c.Get(ctx, id)
  2011. if err != nil {
  2012. panic(err)
  2013. }
  2014. return obj
  2015. }
  2016. // QuerySopTask queries the sop_task edge of a SopStage.
  2017. func (c *SopStageClient) QuerySopTask(ss *SopStage) *SopTaskQuery {
  2018. query := (&SopTaskClient{config: c.config}).Query()
  2019. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2020. id := ss.ID
  2021. step := sqlgraph.NewStep(
  2022. sqlgraph.From(sopstage.Table, sopstage.FieldID, id),
  2023. sqlgraph.To(soptask.Table, soptask.FieldID),
  2024. sqlgraph.Edge(sqlgraph.M2O, true, sopstage.SopTaskTable, sopstage.SopTaskColumn),
  2025. )
  2026. fromV = sqlgraph.Neighbors(ss.driver.Dialect(), step)
  2027. return fromV, nil
  2028. }
  2029. return query
  2030. }
  2031. // QueryStageNodes queries the stage_nodes edge of a SopStage.
  2032. func (c *SopStageClient) QueryStageNodes(ss *SopStage) *SopNodeQuery {
  2033. query := (&SopNodeClient{config: c.config}).Query()
  2034. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2035. id := ss.ID
  2036. step := sqlgraph.NewStep(
  2037. sqlgraph.From(sopstage.Table, sopstage.FieldID, id),
  2038. sqlgraph.To(sopnode.Table, sopnode.FieldID),
  2039. sqlgraph.Edge(sqlgraph.O2M, false, sopstage.StageNodesTable, sopstage.StageNodesColumn),
  2040. )
  2041. fromV = sqlgraph.Neighbors(ss.driver.Dialect(), step)
  2042. return fromV, nil
  2043. }
  2044. return query
  2045. }
  2046. // QueryStageMessages queries the stage_messages edge of a SopStage.
  2047. func (c *SopStageClient) QueryStageMessages(ss *SopStage) *MessageRecordsQuery {
  2048. query := (&MessageRecordsClient{config: c.config}).Query()
  2049. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2050. id := ss.ID
  2051. step := sqlgraph.NewStep(
  2052. sqlgraph.From(sopstage.Table, sopstage.FieldID, id),
  2053. sqlgraph.To(messagerecords.Table, messagerecords.FieldID),
  2054. sqlgraph.Edge(sqlgraph.O2M, false, sopstage.StageMessagesTable, sopstage.StageMessagesColumn),
  2055. )
  2056. fromV = sqlgraph.Neighbors(ss.driver.Dialect(), step)
  2057. return fromV, nil
  2058. }
  2059. return query
  2060. }
  2061. // Hooks returns the client hooks.
  2062. func (c *SopStageClient) Hooks() []Hook {
  2063. hooks := c.hooks.SopStage
  2064. return append(hooks[:len(hooks):len(hooks)], sopstage.Hooks[:]...)
  2065. }
  2066. // Interceptors returns the client interceptors.
  2067. func (c *SopStageClient) Interceptors() []Interceptor {
  2068. inters := c.inters.SopStage
  2069. return append(inters[:len(inters):len(inters)], sopstage.Interceptors[:]...)
  2070. }
  2071. func (c *SopStageClient) mutate(ctx context.Context, m *SopStageMutation) (Value, error) {
  2072. switch m.Op() {
  2073. case OpCreate:
  2074. return (&SopStageCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2075. case OpUpdate:
  2076. return (&SopStageUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2077. case OpUpdateOne:
  2078. return (&SopStageUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2079. case OpDelete, OpDeleteOne:
  2080. return (&SopStageDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  2081. default:
  2082. return nil, fmt.Errorf("ent: unknown SopStage mutation op: %q", m.Op())
  2083. }
  2084. }
  2085. // SopTaskClient is a client for the SopTask schema.
  2086. type SopTaskClient struct {
  2087. config
  2088. }
  2089. // NewSopTaskClient returns a client for the SopTask from the given config.
  2090. func NewSopTaskClient(c config) *SopTaskClient {
  2091. return &SopTaskClient{config: c}
  2092. }
  2093. // Use adds a list of mutation hooks to the hooks stack.
  2094. // A call to `Use(f, g, h)` equals to `soptask.Hooks(f(g(h())))`.
  2095. func (c *SopTaskClient) Use(hooks ...Hook) {
  2096. c.hooks.SopTask = append(c.hooks.SopTask, hooks...)
  2097. }
  2098. // Intercept adds a list of query interceptors to the interceptors stack.
  2099. // A call to `Intercept(f, g, h)` equals to `soptask.Intercept(f(g(h())))`.
  2100. func (c *SopTaskClient) Intercept(interceptors ...Interceptor) {
  2101. c.inters.SopTask = append(c.inters.SopTask, interceptors...)
  2102. }
  2103. // Create returns a builder for creating a SopTask entity.
  2104. func (c *SopTaskClient) Create() *SopTaskCreate {
  2105. mutation := newSopTaskMutation(c.config, OpCreate)
  2106. return &SopTaskCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2107. }
  2108. // CreateBulk returns a builder for creating a bulk of SopTask entities.
  2109. func (c *SopTaskClient) CreateBulk(builders ...*SopTaskCreate) *SopTaskCreateBulk {
  2110. return &SopTaskCreateBulk{config: c.config, builders: builders}
  2111. }
  2112. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  2113. // a builder and applies setFunc on it.
  2114. func (c *SopTaskClient) MapCreateBulk(slice any, setFunc func(*SopTaskCreate, int)) *SopTaskCreateBulk {
  2115. rv := reflect.ValueOf(slice)
  2116. if rv.Kind() != reflect.Slice {
  2117. return &SopTaskCreateBulk{err: fmt.Errorf("calling to SopTaskClient.MapCreateBulk with wrong type %T, need slice", slice)}
  2118. }
  2119. builders := make([]*SopTaskCreate, rv.Len())
  2120. for i := 0; i < rv.Len(); i++ {
  2121. builders[i] = c.Create()
  2122. setFunc(builders[i], i)
  2123. }
  2124. return &SopTaskCreateBulk{config: c.config, builders: builders}
  2125. }
  2126. // Update returns an update builder for SopTask.
  2127. func (c *SopTaskClient) Update() *SopTaskUpdate {
  2128. mutation := newSopTaskMutation(c.config, OpUpdate)
  2129. return &SopTaskUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2130. }
  2131. // UpdateOne returns an update builder for the given entity.
  2132. func (c *SopTaskClient) UpdateOne(st *SopTask) *SopTaskUpdateOne {
  2133. mutation := newSopTaskMutation(c.config, OpUpdateOne, withSopTask(st))
  2134. return &SopTaskUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2135. }
  2136. // UpdateOneID returns an update builder for the given id.
  2137. func (c *SopTaskClient) UpdateOneID(id uint64) *SopTaskUpdateOne {
  2138. mutation := newSopTaskMutation(c.config, OpUpdateOne, withSopTaskID(id))
  2139. return &SopTaskUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2140. }
  2141. // Delete returns a delete builder for SopTask.
  2142. func (c *SopTaskClient) Delete() *SopTaskDelete {
  2143. mutation := newSopTaskMutation(c.config, OpDelete)
  2144. return &SopTaskDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2145. }
  2146. // DeleteOne returns a builder for deleting the given entity.
  2147. func (c *SopTaskClient) DeleteOne(st *SopTask) *SopTaskDeleteOne {
  2148. return c.DeleteOneID(st.ID)
  2149. }
  2150. // DeleteOneID returns a builder for deleting the given entity by its id.
  2151. func (c *SopTaskClient) DeleteOneID(id uint64) *SopTaskDeleteOne {
  2152. builder := c.Delete().Where(soptask.ID(id))
  2153. builder.mutation.id = &id
  2154. builder.mutation.op = OpDeleteOne
  2155. return &SopTaskDeleteOne{builder}
  2156. }
  2157. // Query returns a query builder for SopTask.
  2158. func (c *SopTaskClient) Query() *SopTaskQuery {
  2159. return &SopTaskQuery{
  2160. config: c.config,
  2161. ctx: &QueryContext{Type: TypeSopTask},
  2162. inters: c.Interceptors(),
  2163. }
  2164. }
  2165. // Get returns a SopTask entity by its id.
  2166. func (c *SopTaskClient) Get(ctx context.Context, id uint64) (*SopTask, error) {
  2167. return c.Query().Where(soptask.ID(id)).Only(ctx)
  2168. }
  2169. // GetX is like Get, but panics if an error occurs.
  2170. func (c *SopTaskClient) GetX(ctx context.Context, id uint64) *SopTask {
  2171. obj, err := c.Get(ctx, id)
  2172. if err != nil {
  2173. panic(err)
  2174. }
  2175. return obj
  2176. }
  2177. // QueryTaskStages queries the task_stages edge of a SopTask.
  2178. func (c *SopTaskClient) QueryTaskStages(st *SopTask) *SopStageQuery {
  2179. query := (&SopStageClient{config: c.config}).Query()
  2180. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2181. id := st.ID
  2182. step := sqlgraph.NewStep(
  2183. sqlgraph.From(soptask.Table, soptask.FieldID, id),
  2184. sqlgraph.To(sopstage.Table, sopstage.FieldID),
  2185. sqlgraph.Edge(sqlgraph.O2M, false, soptask.TaskStagesTable, soptask.TaskStagesColumn),
  2186. )
  2187. fromV = sqlgraph.Neighbors(st.driver.Dialect(), step)
  2188. return fromV, nil
  2189. }
  2190. return query
  2191. }
  2192. // Hooks returns the client hooks.
  2193. func (c *SopTaskClient) Hooks() []Hook {
  2194. hooks := c.hooks.SopTask
  2195. return append(hooks[:len(hooks):len(hooks)], soptask.Hooks[:]...)
  2196. }
  2197. // Interceptors returns the client interceptors.
  2198. func (c *SopTaskClient) Interceptors() []Interceptor {
  2199. inters := c.inters.SopTask
  2200. return append(inters[:len(inters):len(inters)], soptask.Interceptors[:]...)
  2201. }
  2202. func (c *SopTaskClient) mutate(ctx context.Context, m *SopTaskMutation) (Value, error) {
  2203. switch m.Op() {
  2204. case OpCreate:
  2205. return (&SopTaskCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2206. case OpUpdate:
  2207. return (&SopTaskUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2208. case OpUpdateOne:
  2209. return (&SopTaskUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2210. case OpDelete, OpDeleteOne:
  2211. return (&SopTaskDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  2212. default:
  2213. return nil, fmt.Errorf("ent: unknown SopTask mutation op: %q", m.Op())
  2214. }
  2215. }
  2216. // TokenClient is a client for the Token schema.
  2217. type TokenClient struct {
  2218. config
  2219. }
  2220. // NewTokenClient returns a client for the Token from the given config.
  2221. func NewTokenClient(c config) *TokenClient {
  2222. return &TokenClient{config: c}
  2223. }
  2224. // Use adds a list of mutation hooks to the hooks stack.
  2225. // A call to `Use(f, g, h)` equals to `token.Hooks(f(g(h())))`.
  2226. func (c *TokenClient) Use(hooks ...Hook) {
  2227. c.hooks.Token = append(c.hooks.Token, hooks...)
  2228. }
  2229. // Intercept adds a list of query interceptors to the interceptors stack.
  2230. // A call to `Intercept(f, g, h)` equals to `token.Intercept(f(g(h())))`.
  2231. func (c *TokenClient) Intercept(interceptors ...Interceptor) {
  2232. c.inters.Token = append(c.inters.Token, interceptors...)
  2233. }
  2234. // Create returns a builder for creating a Token entity.
  2235. func (c *TokenClient) Create() *TokenCreate {
  2236. mutation := newTokenMutation(c.config, OpCreate)
  2237. return &TokenCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2238. }
  2239. // CreateBulk returns a builder for creating a bulk of Token entities.
  2240. func (c *TokenClient) CreateBulk(builders ...*TokenCreate) *TokenCreateBulk {
  2241. return &TokenCreateBulk{config: c.config, builders: builders}
  2242. }
  2243. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  2244. // a builder and applies setFunc on it.
  2245. func (c *TokenClient) MapCreateBulk(slice any, setFunc func(*TokenCreate, int)) *TokenCreateBulk {
  2246. rv := reflect.ValueOf(slice)
  2247. if rv.Kind() != reflect.Slice {
  2248. return &TokenCreateBulk{err: fmt.Errorf("calling to TokenClient.MapCreateBulk with wrong type %T, need slice", slice)}
  2249. }
  2250. builders := make([]*TokenCreate, rv.Len())
  2251. for i := 0; i < rv.Len(); i++ {
  2252. builders[i] = c.Create()
  2253. setFunc(builders[i], i)
  2254. }
  2255. return &TokenCreateBulk{config: c.config, builders: builders}
  2256. }
  2257. // Update returns an update builder for Token.
  2258. func (c *TokenClient) Update() *TokenUpdate {
  2259. mutation := newTokenMutation(c.config, OpUpdate)
  2260. return &TokenUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2261. }
  2262. // UpdateOne returns an update builder for the given entity.
  2263. func (c *TokenClient) UpdateOne(t *Token) *TokenUpdateOne {
  2264. mutation := newTokenMutation(c.config, OpUpdateOne, withToken(t))
  2265. return &TokenUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2266. }
  2267. // UpdateOneID returns an update builder for the given id.
  2268. func (c *TokenClient) UpdateOneID(id uint64) *TokenUpdateOne {
  2269. mutation := newTokenMutation(c.config, OpUpdateOne, withTokenID(id))
  2270. return &TokenUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2271. }
  2272. // Delete returns a delete builder for Token.
  2273. func (c *TokenClient) Delete() *TokenDelete {
  2274. mutation := newTokenMutation(c.config, OpDelete)
  2275. return &TokenDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2276. }
  2277. // DeleteOne returns a builder for deleting the given entity.
  2278. func (c *TokenClient) DeleteOne(t *Token) *TokenDeleteOne {
  2279. return c.DeleteOneID(t.ID)
  2280. }
  2281. // DeleteOneID returns a builder for deleting the given entity by its id.
  2282. func (c *TokenClient) DeleteOneID(id uint64) *TokenDeleteOne {
  2283. builder := c.Delete().Where(token.ID(id))
  2284. builder.mutation.id = &id
  2285. builder.mutation.op = OpDeleteOne
  2286. return &TokenDeleteOne{builder}
  2287. }
  2288. // Query returns a query builder for Token.
  2289. func (c *TokenClient) Query() *TokenQuery {
  2290. return &TokenQuery{
  2291. config: c.config,
  2292. ctx: &QueryContext{Type: TypeToken},
  2293. inters: c.Interceptors(),
  2294. }
  2295. }
  2296. // Get returns a Token entity by its id.
  2297. func (c *TokenClient) Get(ctx context.Context, id uint64) (*Token, error) {
  2298. return c.Query().Where(token.ID(id)).Only(ctx)
  2299. }
  2300. // GetX is like Get, but panics if an error occurs.
  2301. func (c *TokenClient) GetX(ctx context.Context, id uint64) *Token {
  2302. obj, err := c.Get(ctx, id)
  2303. if err != nil {
  2304. panic(err)
  2305. }
  2306. return obj
  2307. }
  2308. // Hooks returns the client hooks.
  2309. func (c *TokenClient) Hooks() []Hook {
  2310. hooks := c.hooks.Token
  2311. return append(hooks[:len(hooks):len(hooks)], token.Hooks[:]...)
  2312. }
  2313. // Interceptors returns the client interceptors.
  2314. func (c *TokenClient) Interceptors() []Interceptor {
  2315. inters := c.inters.Token
  2316. return append(inters[:len(inters):len(inters)], token.Interceptors[:]...)
  2317. }
  2318. func (c *TokenClient) mutate(ctx context.Context, m *TokenMutation) (Value, error) {
  2319. switch m.Op() {
  2320. case OpCreate:
  2321. return (&TokenCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2322. case OpUpdate:
  2323. return (&TokenUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2324. case OpUpdateOne:
  2325. return (&TokenUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2326. case OpDelete, OpDeleteOne:
  2327. return (&TokenDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  2328. default:
  2329. return nil, fmt.Errorf("ent: unknown Token mutation op: %q", m.Op())
  2330. }
  2331. }
  2332. // TutorialClient is a client for the Tutorial schema.
  2333. type TutorialClient struct {
  2334. config
  2335. }
  2336. // NewTutorialClient returns a client for the Tutorial from the given config.
  2337. func NewTutorialClient(c config) *TutorialClient {
  2338. return &TutorialClient{config: c}
  2339. }
  2340. // Use adds a list of mutation hooks to the hooks stack.
  2341. // A call to `Use(f, g, h)` equals to `tutorial.Hooks(f(g(h())))`.
  2342. func (c *TutorialClient) Use(hooks ...Hook) {
  2343. c.hooks.Tutorial = append(c.hooks.Tutorial, hooks...)
  2344. }
  2345. // Intercept adds a list of query interceptors to the interceptors stack.
  2346. // A call to `Intercept(f, g, h)` equals to `tutorial.Intercept(f(g(h())))`.
  2347. func (c *TutorialClient) Intercept(interceptors ...Interceptor) {
  2348. c.inters.Tutorial = append(c.inters.Tutorial, interceptors...)
  2349. }
  2350. // Create returns a builder for creating a Tutorial entity.
  2351. func (c *TutorialClient) Create() *TutorialCreate {
  2352. mutation := newTutorialMutation(c.config, OpCreate)
  2353. return &TutorialCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2354. }
  2355. // CreateBulk returns a builder for creating a bulk of Tutorial entities.
  2356. func (c *TutorialClient) CreateBulk(builders ...*TutorialCreate) *TutorialCreateBulk {
  2357. return &TutorialCreateBulk{config: c.config, builders: builders}
  2358. }
  2359. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  2360. // a builder and applies setFunc on it.
  2361. func (c *TutorialClient) MapCreateBulk(slice any, setFunc func(*TutorialCreate, int)) *TutorialCreateBulk {
  2362. rv := reflect.ValueOf(slice)
  2363. if rv.Kind() != reflect.Slice {
  2364. return &TutorialCreateBulk{err: fmt.Errorf("calling to TutorialClient.MapCreateBulk with wrong type %T, need slice", slice)}
  2365. }
  2366. builders := make([]*TutorialCreate, rv.Len())
  2367. for i := 0; i < rv.Len(); i++ {
  2368. builders[i] = c.Create()
  2369. setFunc(builders[i], i)
  2370. }
  2371. return &TutorialCreateBulk{config: c.config, builders: builders}
  2372. }
  2373. // Update returns an update builder for Tutorial.
  2374. func (c *TutorialClient) Update() *TutorialUpdate {
  2375. mutation := newTutorialMutation(c.config, OpUpdate)
  2376. return &TutorialUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2377. }
  2378. // UpdateOne returns an update builder for the given entity.
  2379. func (c *TutorialClient) UpdateOne(t *Tutorial) *TutorialUpdateOne {
  2380. mutation := newTutorialMutation(c.config, OpUpdateOne, withTutorial(t))
  2381. return &TutorialUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2382. }
  2383. // UpdateOneID returns an update builder for the given id.
  2384. func (c *TutorialClient) UpdateOneID(id uint64) *TutorialUpdateOne {
  2385. mutation := newTutorialMutation(c.config, OpUpdateOne, withTutorialID(id))
  2386. return &TutorialUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2387. }
  2388. // Delete returns a delete builder for Tutorial.
  2389. func (c *TutorialClient) Delete() *TutorialDelete {
  2390. mutation := newTutorialMutation(c.config, OpDelete)
  2391. return &TutorialDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2392. }
  2393. // DeleteOne returns a builder for deleting the given entity.
  2394. func (c *TutorialClient) DeleteOne(t *Tutorial) *TutorialDeleteOne {
  2395. return c.DeleteOneID(t.ID)
  2396. }
  2397. // DeleteOneID returns a builder for deleting the given entity by its id.
  2398. func (c *TutorialClient) DeleteOneID(id uint64) *TutorialDeleteOne {
  2399. builder := c.Delete().Where(tutorial.ID(id))
  2400. builder.mutation.id = &id
  2401. builder.mutation.op = OpDeleteOne
  2402. return &TutorialDeleteOne{builder}
  2403. }
  2404. // Query returns a query builder for Tutorial.
  2405. func (c *TutorialClient) Query() *TutorialQuery {
  2406. return &TutorialQuery{
  2407. config: c.config,
  2408. ctx: &QueryContext{Type: TypeTutorial},
  2409. inters: c.Interceptors(),
  2410. }
  2411. }
  2412. // Get returns a Tutorial entity by its id.
  2413. func (c *TutorialClient) Get(ctx context.Context, id uint64) (*Tutorial, error) {
  2414. return c.Query().Where(tutorial.ID(id)).Only(ctx)
  2415. }
  2416. // GetX is like Get, but panics if an error occurs.
  2417. func (c *TutorialClient) GetX(ctx context.Context, id uint64) *Tutorial {
  2418. obj, err := c.Get(ctx, id)
  2419. if err != nil {
  2420. panic(err)
  2421. }
  2422. return obj
  2423. }
  2424. // QueryEmployee queries the employee edge of a Tutorial.
  2425. func (c *TutorialClient) QueryEmployee(t *Tutorial) *EmployeeQuery {
  2426. query := (&EmployeeClient{config: c.config}).Query()
  2427. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2428. id := t.ID
  2429. step := sqlgraph.NewStep(
  2430. sqlgraph.From(tutorial.Table, tutorial.FieldID, id),
  2431. sqlgraph.To(employee.Table, employee.FieldID),
  2432. sqlgraph.Edge(sqlgraph.M2O, true, tutorial.EmployeeTable, tutorial.EmployeeColumn),
  2433. )
  2434. fromV = sqlgraph.Neighbors(t.driver.Dialect(), step)
  2435. return fromV, nil
  2436. }
  2437. return query
  2438. }
  2439. // Hooks returns the client hooks.
  2440. func (c *TutorialClient) Hooks() []Hook {
  2441. hooks := c.hooks.Tutorial
  2442. return append(hooks[:len(hooks):len(hooks)], tutorial.Hooks[:]...)
  2443. }
  2444. // Interceptors returns the client interceptors.
  2445. func (c *TutorialClient) Interceptors() []Interceptor {
  2446. inters := c.inters.Tutorial
  2447. return append(inters[:len(inters):len(inters)], tutorial.Interceptors[:]...)
  2448. }
  2449. func (c *TutorialClient) mutate(ctx context.Context, m *TutorialMutation) (Value, error) {
  2450. switch m.Op() {
  2451. case OpCreate:
  2452. return (&TutorialCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2453. case OpUpdate:
  2454. return (&TutorialUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2455. case OpUpdateOne:
  2456. return (&TutorialUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2457. case OpDelete, OpDeleteOne:
  2458. return (&TutorialDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  2459. default:
  2460. return nil, fmt.Errorf("ent: unknown Tutorial mutation op: %q", m.Op())
  2461. }
  2462. }
  2463. // WorkExperienceClient is a client for the WorkExperience schema.
  2464. type WorkExperienceClient struct {
  2465. config
  2466. }
  2467. // NewWorkExperienceClient returns a client for the WorkExperience from the given config.
  2468. func NewWorkExperienceClient(c config) *WorkExperienceClient {
  2469. return &WorkExperienceClient{config: c}
  2470. }
  2471. // Use adds a list of mutation hooks to the hooks stack.
  2472. // A call to `Use(f, g, h)` equals to `workexperience.Hooks(f(g(h())))`.
  2473. func (c *WorkExperienceClient) Use(hooks ...Hook) {
  2474. c.hooks.WorkExperience = append(c.hooks.WorkExperience, hooks...)
  2475. }
  2476. // Intercept adds a list of query interceptors to the interceptors stack.
  2477. // A call to `Intercept(f, g, h)` equals to `workexperience.Intercept(f(g(h())))`.
  2478. func (c *WorkExperienceClient) Intercept(interceptors ...Interceptor) {
  2479. c.inters.WorkExperience = append(c.inters.WorkExperience, interceptors...)
  2480. }
  2481. // Create returns a builder for creating a WorkExperience entity.
  2482. func (c *WorkExperienceClient) Create() *WorkExperienceCreate {
  2483. mutation := newWorkExperienceMutation(c.config, OpCreate)
  2484. return &WorkExperienceCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2485. }
  2486. // CreateBulk returns a builder for creating a bulk of WorkExperience entities.
  2487. func (c *WorkExperienceClient) CreateBulk(builders ...*WorkExperienceCreate) *WorkExperienceCreateBulk {
  2488. return &WorkExperienceCreateBulk{config: c.config, builders: builders}
  2489. }
  2490. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  2491. // a builder and applies setFunc on it.
  2492. func (c *WorkExperienceClient) MapCreateBulk(slice any, setFunc func(*WorkExperienceCreate, int)) *WorkExperienceCreateBulk {
  2493. rv := reflect.ValueOf(slice)
  2494. if rv.Kind() != reflect.Slice {
  2495. return &WorkExperienceCreateBulk{err: fmt.Errorf("calling to WorkExperienceClient.MapCreateBulk with wrong type %T, need slice", slice)}
  2496. }
  2497. builders := make([]*WorkExperienceCreate, rv.Len())
  2498. for i := 0; i < rv.Len(); i++ {
  2499. builders[i] = c.Create()
  2500. setFunc(builders[i], i)
  2501. }
  2502. return &WorkExperienceCreateBulk{config: c.config, builders: builders}
  2503. }
  2504. // Update returns an update builder for WorkExperience.
  2505. func (c *WorkExperienceClient) Update() *WorkExperienceUpdate {
  2506. mutation := newWorkExperienceMutation(c.config, OpUpdate)
  2507. return &WorkExperienceUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2508. }
  2509. // UpdateOne returns an update builder for the given entity.
  2510. func (c *WorkExperienceClient) UpdateOne(we *WorkExperience) *WorkExperienceUpdateOne {
  2511. mutation := newWorkExperienceMutation(c.config, OpUpdateOne, withWorkExperience(we))
  2512. return &WorkExperienceUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2513. }
  2514. // UpdateOneID returns an update builder for the given id.
  2515. func (c *WorkExperienceClient) UpdateOneID(id uint64) *WorkExperienceUpdateOne {
  2516. mutation := newWorkExperienceMutation(c.config, OpUpdateOne, withWorkExperienceID(id))
  2517. return &WorkExperienceUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2518. }
  2519. // Delete returns a delete builder for WorkExperience.
  2520. func (c *WorkExperienceClient) Delete() *WorkExperienceDelete {
  2521. mutation := newWorkExperienceMutation(c.config, OpDelete)
  2522. return &WorkExperienceDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2523. }
  2524. // DeleteOne returns a builder for deleting the given entity.
  2525. func (c *WorkExperienceClient) DeleteOne(we *WorkExperience) *WorkExperienceDeleteOne {
  2526. return c.DeleteOneID(we.ID)
  2527. }
  2528. // DeleteOneID returns a builder for deleting the given entity by its id.
  2529. func (c *WorkExperienceClient) DeleteOneID(id uint64) *WorkExperienceDeleteOne {
  2530. builder := c.Delete().Where(workexperience.ID(id))
  2531. builder.mutation.id = &id
  2532. builder.mutation.op = OpDeleteOne
  2533. return &WorkExperienceDeleteOne{builder}
  2534. }
  2535. // Query returns a query builder for WorkExperience.
  2536. func (c *WorkExperienceClient) Query() *WorkExperienceQuery {
  2537. return &WorkExperienceQuery{
  2538. config: c.config,
  2539. ctx: &QueryContext{Type: TypeWorkExperience},
  2540. inters: c.Interceptors(),
  2541. }
  2542. }
  2543. // Get returns a WorkExperience entity by its id.
  2544. func (c *WorkExperienceClient) Get(ctx context.Context, id uint64) (*WorkExperience, error) {
  2545. return c.Query().Where(workexperience.ID(id)).Only(ctx)
  2546. }
  2547. // GetX is like Get, but panics if an error occurs.
  2548. func (c *WorkExperienceClient) GetX(ctx context.Context, id uint64) *WorkExperience {
  2549. obj, err := c.Get(ctx, id)
  2550. if err != nil {
  2551. panic(err)
  2552. }
  2553. return obj
  2554. }
  2555. // QueryEmployee queries the employee edge of a WorkExperience.
  2556. func (c *WorkExperienceClient) QueryEmployee(we *WorkExperience) *EmployeeQuery {
  2557. query := (&EmployeeClient{config: c.config}).Query()
  2558. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2559. id := we.ID
  2560. step := sqlgraph.NewStep(
  2561. sqlgraph.From(workexperience.Table, workexperience.FieldID, id),
  2562. sqlgraph.To(employee.Table, employee.FieldID),
  2563. sqlgraph.Edge(sqlgraph.M2O, true, workexperience.EmployeeTable, workexperience.EmployeeColumn),
  2564. )
  2565. fromV = sqlgraph.Neighbors(we.driver.Dialect(), step)
  2566. return fromV, nil
  2567. }
  2568. return query
  2569. }
  2570. // Hooks returns the client hooks.
  2571. func (c *WorkExperienceClient) Hooks() []Hook {
  2572. hooks := c.hooks.WorkExperience
  2573. return append(hooks[:len(hooks):len(hooks)], workexperience.Hooks[:]...)
  2574. }
  2575. // Interceptors returns the client interceptors.
  2576. func (c *WorkExperienceClient) Interceptors() []Interceptor {
  2577. inters := c.inters.WorkExperience
  2578. return append(inters[:len(inters):len(inters)], workexperience.Interceptors[:]...)
  2579. }
  2580. func (c *WorkExperienceClient) mutate(ctx context.Context, m *WorkExperienceMutation) (Value, error) {
  2581. switch m.Op() {
  2582. case OpCreate:
  2583. return (&WorkExperienceCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2584. case OpUpdate:
  2585. return (&WorkExperienceUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2586. case OpUpdateOne:
  2587. return (&WorkExperienceUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2588. case OpDelete, OpDeleteOne:
  2589. return (&WorkExperienceDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  2590. default:
  2591. return nil, fmt.Errorf("ent: unknown WorkExperience mutation op: %q", m.Op())
  2592. }
  2593. }
  2594. // WxClient is a client for the Wx schema.
  2595. type WxClient struct {
  2596. config
  2597. }
  2598. // NewWxClient returns a client for the Wx from the given config.
  2599. func NewWxClient(c config) *WxClient {
  2600. return &WxClient{config: c}
  2601. }
  2602. // Use adds a list of mutation hooks to the hooks stack.
  2603. // A call to `Use(f, g, h)` equals to `wx.Hooks(f(g(h())))`.
  2604. func (c *WxClient) Use(hooks ...Hook) {
  2605. c.hooks.Wx = append(c.hooks.Wx, hooks...)
  2606. }
  2607. // Intercept adds a list of query interceptors to the interceptors stack.
  2608. // A call to `Intercept(f, g, h)` equals to `wx.Intercept(f(g(h())))`.
  2609. func (c *WxClient) Intercept(interceptors ...Interceptor) {
  2610. c.inters.Wx = append(c.inters.Wx, interceptors...)
  2611. }
  2612. // Create returns a builder for creating a Wx entity.
  2613. func (c *WxClient) Create() *WxCreate {
  2614. mutation := newWxMutation(c.config, OpCreate)
  2615. return &WxCreate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2616. }
  2617. // CreateBulk returns a builder for creating a bulk of Wx entities.
  2618. func (c *WxClient) CreateBulk(builders ...*WxCreate) *WxCreateBulk {
  2619. return &WxCreateBulk{config: c.config, builders: builders}
  2620. }
  2621. // MapCreateBulk creates a bulk creation builder from the given slice. For each item in the slice, the function creates
  2622. // a builder and applies setFunc on it.
  2623. func (c *WxClient) MapCreateBulk(slice any, setFunc func(*WxCreate, int)) *WxCreateBulk {
  2624. rv := reflect.ValueOf(slice)
  2625. if rv.Kind() != reflect.Slice {
  2626. return &WxCreateBulk{err: fmt.Errorf("calling to WxClient.MapCreateBulk with wrong type %T, need slice", slice)}
  2627. }
  2628. builders := make([]*WxCreate, rv.Len())
  2629. for i := 0; i < rv.Len(); i++ {
  2630. builders[i] = c.Create()
  2631. setFunc(builders[i], i)
  2632. }
  2633. return &WxCreateBulk{config: c.config, builders: builders}
  2634. }
  2635. // Update returns an update builder for Wx.
  2636. func (c *WxClient) Update() *WxUpdate {
  2637. mutation := newWxMutation(c.config, OpUpdate)
  2638. return &WxUpdate{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2639. }
  2640. // UpdateOne returns an update builder for the given entity.
  2641. func (c *WxClient) UpdateOne(w *Wx) *WxUpdateOne {
  2642. mutation := newWxMutation(c.config, OpUpdateOne, withWx(w))
  2643. return &WxUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2644. }
  2645. // UpdateOneID returns an update builder for the given id.
  2646. func (c *WxClient) UpdateOneID(id uint64) *WxUpdateOne {
  2647. mutation := newWxMutation(c.config, OpUpdateOne, withWxID(id))
  2648. return &WxUpdateOne{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2649. }
  2650. // Delete returns a delete builder for Wx.
  2651. func (c *WxClient) Delete() *WxDelete {
  2652. mutation := newWxMutation(c.config, OpDelete)
  2653. return &WxDelete{config: c.config, hooks: c.Hooks(), mutation: mutation}
  2654. }
  2655. // DeleteOne returns a builder for deleting the given entity.
  2656. func (c *WxClient) DeleteOne(w *Wx) *WxDeleteOne {
  2657. return c.DeleteOneID(w.ID)
  2658. }
  2659. // DeleteOneID returns a builder for deleting the given entity by its id.
  2660. func (c *WxClient) DeleteOneID(id uint64) *WxDeleteOne {
  2661. builder := c.Delete().Where(wx.ID(id))
  2662. builder.mutation.id = &id
  2663. builder.mutation.op = OpDeleteOne
  2664. return &WxDeleteOne{builder}
  2665. }
  2666. // Query returns a query builder for Wx.
  2667. func (c *WxClient) Query() *WxQuery {
  2668. return &WxQuery{
  2669. config: c.config,
  2670. ctx: &QueryContext{Type: TypeWx},
  2671. inters: c.Interceptors(),
  2672. }
  2673. }
  2674. // Get returns a Wx entity by its id.
  2675. func (c *WxClient) Get(ctx context.Context, id uint64) (*Wx, error) {
  2676. return c.Query().Where(wx.ID(id)).Only(ctx)
  2677. }
  2678. // GetX is like Get, but panics if an error occurs.
  2679. func (c *WxClient) GetX(ctx context.Context, id uint64) *Wx {
  2680. obj, err := c.Get(ctx, id)
  2681. if err != nil {
  2682. panic(err)
  2683. }
  2684. return obj
  2685. }
  2686. // QueryServer queries the server edge of a Wx.
  2687. func (c *WxClient) QueryServer(w *Wx) *ServerQuery {
  2688. query := (&ServerClient{config: c.config}).Query()
  2689. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2690. id := w.ID
  2691. step := sqlgraph.NewStep(
  2692. sqlgraph.From(wx.Table, wx.FieldID, id),
  2693. sqlgraph.To(server.Table, server.FieldID),
  2694. sqlgraph.Edge(sqlgraph.M2O, true, wx.ServerTable, wx.ServerColumn),
  2695. )
  2696. fromV = sqlgraph.Neighbors(w.driver.Dialect(), step)
  2697. return fromV, nil
  2698. }
  2699. return query
  2700. }
  2701. // QueryAgent queries the agent edge of a Wx.
  2702. func (c *WxClient) QueryAgent(w *Wx) *AgentQuery {
  2703. query := (&AgentClient{config: c.config}).Query()
  2704. query.path = func(context.Context) (fromV *sql.Selector, _ error) {
  2705. id := w.ID
  2706. step := sqlgraph.NewStep(
  2707. sqlgraph.From(wx.Table, wx.FieldID, id),
  2708. sqlgraph.To(agent.Table, agent.FieldID),
  2709. sqlgraph.Edge(sqlgraph.M2O, true, wx.AgentTable, wx.AgentColumn),
  2710. )
  2711. fromV = sqlgraph.Neighbors(w.driver.Dialect(), step)
  2712. return fromV, nil
  2713. }
  2714. return query
  2715. }
  2716. // Hooks returns the client hooks.
  2717. func (c *WxClient) Hooks() []Hook {
  2718. hooks := c.hooks.Wx
  2719. return append(hooks[:len(hooks):len(hooks)], wx.Hooks[:]...)
  2720. }
  2721. // Interceptors returns the client interceptors.
  2722. func (c *WxClient) Interceptors() []Interceptor {
  2723. inters := c.inters.Wx
  2724. return append(inters[:len(inters):len(inters)], wx.Interceptors[:]...)
  2725. }
  2726. func (c *WxClient) mutate(ctx context.Context, m *WxMutation) (Value, error) {
  2727. switch m.Op() {
  2728. case OpCreate:
  2729. return (&WxCreate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2730. case OpUpdate:
  2731. return (&WxUpdate{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2732. case OpUpdateOne:
  2733. return (&WxUpdateOne{config: c.config, hooks: c.Hooks(), mutation: m}).Save(ctx)
  2734. case OpDelete, OpDeleteOne:
  2735. return (&WxDelete{config: c.config, hooks: c.Hooks(), mutation: m}).Exec(ctx)
  2736. default:
  2737. return nil, fmt.Errorf("ent: unknown Wx mutation op: %q", m.Op())
  2738. }
  2739. }
  2740. // hooks and interceptors per client, for fast access.
  2741. type (
  2742. hooks struct {
  2743. Agent, BatchMsg, Contact, Employee, EmployeeConfig, Label, LabelRelationship,
  2744. Message, MessageRecords, Msg, Server, SopNode, SopStage, SopTask, Token,
  2745. Tutorial, WorkExperience, Wx []ent.Hook
  2746. }
  2747. inters struct {
  2748. Agent, BatchMsg, Contact, Employee, EmployeeConfig, Label, LabelRelationship,
  2749. Message, MessageRecords, Msg, Server, SopNode, SopStage, SopTask, Token,
  2750. Tutorial, WorkExperience, Wx []ent.Interceptor
  2751. }
  2752. )
  2753. // ExecContext allows calling the underlying ExecContext method of the driver if it is supported by it.
  2754. // See, database/sql#DB.ExecContext for more information.
  2755. func (c *config) ExecContext(ctx context.Context, query string, args ...any) (stdsql.Result, error) {
  2756. ex, ok := c.driver.(interface {
  2757. ExecContext(context.Context, string, ...any) (stdsql.Result, error)
  2758. })
  2759. if !ok {
  2760. return nil, fmt.Errorf("Driver.ExecContext is not supported")
  2761. }
  2762. return ex.ExecContext(ctx, query, args...)
  2763. }
  2764. // QueryContext allows calling the underlying QueryContext method of the driver if it is supported by it.
  2765. // See, database/sql#DB.QueryContext for more information.
  2766. func (c *config) QueryContext(ctx context.Context, query string, args ...any) (*stdsql.Rows, error) {
  2767. q, ok := c.driver.(interface {
  2768. QueryContext(context.Context, string, ...any) (*stdsql.Rows, error)
  2769. })
  2770. if !ok {
  2771. return nil, fmt.Errorf("Driver.QueryContext is not supported")
  2772. }
  2773. return q.QueryContext(ctx, query, args...)
  2774. }