client.go 119 KB

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