intercept.go 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169
  1. // Code generated by ent, DO NOT EDIT.
  2. package intercept
  3. import (
  4. "context"
  5. "fmt"
  6. "wechat-api/ent"
  7. "wechat-api/ent/agent"
  8. "wechat-api/ent/agentbase"
  9. "wechat-api/ent/aliyunavatar"
  10. "wechat-api/ent/allocagent"
  11. "wechat-api/ent/batchmsg"
  12. "wechat-api/ent/category"
  13. "wechat-api/ent/chatrecords"
  14. "wechat-api/ent/chatsession"
  15. "wechat-api/ent/contact"
  16. "wechat-api/ent/employee"
  17. "wechat-api/ent/employeeconfig"
  18. "wechat-api/ent/label"
  19. "wechat-api/ent/labelrelationship"
  20. "wechat-api/ent/labeltagging"
  21. "wechat-api/ent/message"
  22. "wechat-api/ent/messagerecords"
  23. "wechat-api/ent/msg"
  24. "wechat-api/ent/predicate"
  25. "wechat-api/ent/server"
  26. "wechat-api/ent/sopnode"
  27. "wechat-api/ent/sopstage"
  28. "wechat-api/ent/soptask"
  29. "wechat-api/ent/token"
  30. "wechat-api/ent/tutorial"
  31. "wechat-api/ent/usagedetail"
  32. "wechat-api/ent/usagestatisticday"
  33. "wechat-api/ent/usagestatistichour"
  34. "wechat-api/ent/usagestatisticmonth"
  35. "wechat-api/ent/usagetotal"
  36. "wechat-api/ent/workexperience"
  37. "wechat-api/ent/wpchatroom"
  38. "wechat-api/ent/wpchatroommember"
  39. "wechat-api/ent/wx"
  40. "wechat-api/ent/wxcard"
  41. "wechat-api/ent/wxcarduser"
  42. "wechat-api/ent/wxcardvisit"
  43. "entgo.io/ent/dialect/sql"
  44. )
  45. // The Query interface represents an operation that queries a graph.
  46. // By using this interface, users can write generic code that manipulates
  47. // query builders of different types.
  48. type Query interface {
  49. // Type returns the string representation of the query type.
  50. Type() string
  51. // Limit the number of records to be returned by this query.
  52. Limit(int)
  53. // Offset to start from.
  54. Offset(int)
  55. // Unique configures the query builder to filter duplicate records.
  56. Unique(bool)
  57. // Order specifies how the records should be ordered.
  58. Order(...func(*sql.Selector))
  59. // WhereP appends storage-level predicates to the query builder. Using this method, users
  60. // can use type-assertion to append predicates that do not depend on any generated package.
  61. WhereP(...func(*sql.Selector))
  62. }
  63. // The Func type is an adapter that allows ordinary functions to be used as interceptors.
  64. // Unlike traversal functions, interceptors are skipped during graph traversals. Note that the
  65. // implementation of Func is different from the one defined in entgo.io/ent.InterceptFunc.
  66. type Func func(context.Context, Query) error
  67. // Intercept calls f(ctx, q) and then applied the next Querier.
  68. func (f Func) Intercept(next ent.Querier) ent.Querier {
  69. return ent.QuerierFunc(func(ctx context.Context, q ent.Query) (ent.Value, error) {
  70. query, err := NewQuery(q)
  71. if err != nil {
  72. return nil, err
  73. }
  74. if err := f(ctx, query); err != nil {
  75. return nil, err
  76. }
  77. return next.Query(ctx, q)
  78. })
  79. }
  80. // The TraverseFunc type is an adapter to allow the use of ordinary function as Traverser.
  81. // If f is a function with the appropriate signature, TraverseFunc(f) is a Traverser that calls f.
  82. type TraverseFunc func(context.Context, Query) error
  83. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  84. func (f TraverseFunc) Intercept(next ent.Querier) ent.Querier {
  85. return next
  86. }
  87. // Traverse calls f(ctx, q).
  88. func (f TraverseFunc) Traverse(ctx context.Context, q ent.Query) error {
  89. query, err := NewQuery(q)
  90. if err != nil {
  91. return err
  92. }
  93. return f(ctx, query)
  94. }
  95. // The AgentFunc type is an adapter to allow the use of ordinary function as a Querier.
  96. type AgentFunc func(context.Context, *ent.AgentQuery) (ent.Value, error)
  97. // Query calls f(ctx, q).
  98. func (f AgentFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  99. if q, ok := q.(*ent.AgentQuery); ok {
  100. return f(ctx, q)
  101. }
  102. return nil, fmt.Errorf("unexpected query type %T. expect *ent.AgentQuery", q)
  103. }
  104. // The TraverseAgent type is an adapter to allow the use of ordinary function as Traverser.
  105. type TraverseAgent func(context.Context, *ent.AgentQuery) error
  106. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  107. func (f TraverseAgent) Intercept(next ent.Querier) ent.Querier {
  108. return next
  109. }
  110. // Traverse calls f(ctx, q).
  111. func (f TraverseAgent) Traverse(ctx context.Context, q ent.Query) error {
  112. if q, ok := q.(*ent.AgentQuery); ok {
  113. return f(ctx, q)
  114. }
  115. return fmt.Errorf("unexpected query type %T. expect *ent.AgentQuery", q)
  116. }
  117. // The AgentBaseFunc type is an adapter to allow the use of ordinary function as a Querier.
  118. type AgentBaseFunc func(context.Context, *ent.AgentBaseQuery) (ent.Value, error)
  119. // Query calls f(ctx, q).
  120. func (f AgentBaseFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  121. if q, ok := q.(*ent.AgentBaseQuery); ok {
  122. return f(ctx, q)
  123. }
  124. return nil, fmt.Errorf("unexpected query type %T. expect *ent.AgentBaseQuery", q)
  125. }
  126. // The TraverseAgentBase type is an adapter to allow the use of ordinary function as Traverser.
  127. type TraverseAgentBase func(context.Context, *ent.AgentBaseQuery) error
  128. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  129. func (f TraverseAgentBase) Intercept(next ent.Querier) ent.Querier {
  130. return next
  131. }
  132. // Traverse calls f(ctx, q).
  133. func (f TraverseAgentBase) Traverse(ctx context.Context, q ent.Query) error {
  134. if q, ok := q.(*ent.AgentBaseQuery); ok {
  135. return f(ctx, q)
  136. }
  137. return fmt.Errorf("unexpected query type %T. expect *ent.AgentBaseQuery", q)
  138. }
  139. // The AliyunAvatarFunc type is an adapter to allow the use of ordinary function as a Querier.
  140. type AliyunAvatarFunc func(context.Context, *ent.AliyunAvatarQuery) (ent.Value, error)
  141. // Query calls f(ctx, q).
  142. func (f AliyunAvatarFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  143. if q, ok := q.(*ent.AliyunAvatarQuery); ok {
  144. return f(ctx, q)
  145. }
  146. return nil, fmt.Errorf("unexpected query type %T. expect *ent.AliyunAvatarQuery", q)
  147. }
  148. // The TraverseAliyunAvatar type is an adapter to allow the use of ordinary function as Traverser.
  149. type TraverseAliyunAvatar func(context.Context, *ent.AliyunAvatarQuery) error
  150. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  151. func (f TraverseAliyunAvatar) Intercept(next ent.Querier) ent.Querier {
  152. return next
  153. }
  154. // Traverse calls f(ctx, q).
  155. func (f TraverseAliyunAvatar) Traverse(ctx context.Context, q ent.Query) error {
  156. if q, ok := q.(*ent.AliyunAvatarQuery); ok {
  157. return f(ctx, q)
  158. }
  159. return fmt.Errorf("unexpected query type %T. expect *ent.AliyunAvatarQuery", q)
  160. }
  161. // The AllocAgentFunc type is an adapter to allow the use of ordinary function as a Querier.
  162. type AllocAgentFunc func(context.Context, *ent.AllocAgentQuery) (ent.Value, error)
  163. // Query calls f(ctx, q).
  164. func (f AllocAgentFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  165. if q, ok := q.(*ent.AllocAgentQuery); ok {
  166. return f(ctx, q)
  167. }
  168. return nil, fmt.Errorf("unexpected query type %T. expect *ent.AllocAgentQuery", q)
  169. }
  170. // The TraverseAllocAgent type is an adapter to allow the use of ordinary function as Traverser.
  171. type TraverseAllocAgent func(context.Context, *ent.AllocAgentQuery) error
  172. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  173. func (f TraverseAllocAgent) Intercept(next ent.Querier) ent.Querier {
  174. return next
  175. }
  176. // Traverse calls f(ctx, q).
  177. func (f TraverseAllocAgent) Traverse(ctx context.Context, q ent.Query) error {
  178. if q, ok := q.(*ent.AllocAgentQuery); ok {
  179. return f(ctx, q)
  180. }
  181. return fmt.Errorf("unexpected query type %T. expect *ent.AllocAgentQuery", q)
  182. }
  183. // The BatchMsgFunc type is an adapter to allow the use of ordinary function as a Querier.
  184. type BatchMsgFunc func(context.Context, *ent.BatchMsgQuery) (ent.Value, error)
  185. // Query calls f(ctx, q).
  186. func (f BatchMsgFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  187. if q, ok := q.(*ent.BatchMsgQuery); ok {
  188. return f(ctx, q)
  189. }
  190. return nil, fmt.Errorf("unexpected query type %T. expect *ent.BatchMsgQuery", q)
  191. }
  192. // The TraverseBatchMsg type is an adapter to allow the use of ordinary function as Traverser.
  193. type TraverseBatchMsg func(context.Context, *ent.BatchMsgQuery) error
  194. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  195. func (f TraverseBatchMsg) Intercept(next ent.Querier) ent.Querier {
  196. return next
  197. }
  198. // Traverse calls f(ctx, q).
  199. func (f TraverseBatchMsg) Traverse(ctx context.Context, q ent.Query) error {
  200. if q, ok := q.(*ent.BatchMsgQuery); ok {
  201. return f(ctx, q)
  202. }
  203. return fmt.Errorf("unexpected query type %T. expect *ent.BatchMsgQuery", q)
  204. }
  205. // The CategoryFunc type is an adapter to allow the use of ordinary function as a Querier.
  206. type CategoryFunc func(context.Context, *ent.CategoryQuery) (ent.Value, error)
  207. // Query calls f(ctx, q).
  208. func (f CategoryFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  209. if q, ok := q.(*ent.CategoryQuery); ok {
  210. return f(ctx, q)
  211. }
  212. return nil, fmt.Errorf("unexpected query type %T. expect *ent.CategoryQuery", q)
  213. }
  214. // The TraverseCategory type is an adapter to allow the use of ordinary function as Traverser.
  215. type TraverseCategory func(context.Context, *ent.CategoryQuery) error
  216. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  217. func (f TraverseCategory) Intercept(next ent.Querier) ent.Querier {
  218. return next
  219. }
  220. // Traverse calls f(ctx, q).
  221. func (f TraverseCategory) Traverse(ctx context.Context, q ent.Query) error {
  222. if q, ok := q.(*ent.CategoryQuery); ok {
  223. return f(ctx, q)
  224. }
  225. return fmt.Errorf("unexpected query type %T. expect *ent.CategoryQuery", q)
  226. }
  227. // The ChatRecordsFunc type is an adapter to allow the use of ordinary function as a Querier.
  228. type ChatRecordsFunc func(context.Context, *ent.ChatRecordsQuery) (ent.Value, error)
  229. // Query calls f(ctx, q).
  230. func (f ChatRecordsFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  231. if q, ok := q.(*ent.ChatRecordsQuery); ok {
  232. return f(ctx, q)
  233. }
  234. return nil, fmt.Errorf("unexpected query type %T. expect *ent.ChatRecordsQuery", q)
  235. }
  236. // The TraverseChatRecords type is an adapter to allow the use of ordinary function as Traverser.
  237. type TraverseChatRecords func(context.Context, *ent.ChatRecordsQuery) error
  238. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  239. func (f TraverseChatRecords) Intercept(next ent.Querier) ent.Querier {
  240. return next
  241. }
  242. // Traverse calls f(ctx, q).
  243. func (f TraverseChatRecords) Traverse(ctx context.Context, q ent.Query) error {
  244. if q, ok := q.(*ent.ChatRecordsQuery); ok {
  245. return f(ctx, q)
  246. }
  247. return fmt.Errorf("unexpected query type %T. expect *ent.ChatRecordsQuery", q)
  248. }
  249. // The ChatSessionFunc type is an adapter to allow the use of ordinary function as a Querier.
  250. type ChatSessionFunc func(context.Context, *ent.ChatSessionQuery) (ent.Value, error)
  251. // Query calls f(ctx, q).
  252. func (f ChatSessionFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  253. if q, ok := q.(*ent.ChatSessionQuery); ok {
  254. return f(ctx, q)
  255. }
  256. return nil, fmt.Errorf("unexpected query type %T. expect *ent.ChatSessionQuery", q)
  257. }
  258. // The TraverseChatSession type is an adapter to allow the use of ordinary function as Traverser.
  259. type TraverseChatSession func(context.Context, *ent.ChatSessionQuery) error
  260. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  261. func (f TraverseChatSession) Intercept(next ent.Querier) ent.Querier {
  262. return next
  263. }
  264. // Traverse calls f(ctx, q).
  265. func (f TraverseChatSession) Traverse(ctx context.Context, q ent.Query) error {
  266. if q, ok := q.(*ent.ChatSessionQuery); ok {
  267. return f(ctx, q)
  268. }
  269. return fmt.Errorf("unexpected query type %T. expect *ent.ChatSessionQuery", q)
  270. }
  271. // The ContactFunc type is an adapter to allow the use of ordinary function as a Querier.
  272. type ContactFunc func(context.Context, *ent.ContactQuery) (ent.Value, error)
  273. // Query calls f(ctx, q).
  274. func (f ContactFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  275. if q, ok := q.(*ent.ContactQuery); ok {
  276. return f(ctx, q)
  277. }
  278. return nil, fmt.Errorf("unexpected query type %T. expect *ent.ContactQuery", q)
  279. }
  280. // The TraverseContact type is an adapter to allow the use of ordinary function as Traverser.
  281. type TraverseContact func(context.Context, *ent.ContactQuery) error
  282. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  283. func (f TraverseContact) Intercept(next ent.Querier) ent.Querier {
  284. return next
  285. }
  286. // Traverse calls f(ctx, q).
  287. func (f TraverseContact) Traverse(ctx context.Context, q ent.Query) error {
  288. if q, ok := q.(*ent.ContactQuery); ok {
  289. return f(ctx, q)
  290. }
  291. return fmt.Errorf("unexpected query type %T. expect *ent.ContactQuery", q)
  292. }
  293. // The EmployeeFunc type is an adapter to allow the use of ordinary function as a Querier.
  294. type EmployeeFunc func(context.Context, *ent.EmployeeQuery) (ent.Value, error)
  295. // Query calls f(ctx, q).
  296. func (f EmployeeFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  297. if q, ok := q.(*ent.EmployeeQuery); ok {
  298. return f(ctx, q)
  299. }
  300. return nil, fmt.Errorf("unexpected query type %T. expect *ent.EmployeeQuery", q)
  301. }
  302. // The TraverseEmployee type is an adapter to allow the use of ordinary function as Traverser.
  303. type TraverseEmployee func(context.Context, *ent.EmployeeQuery) error
  304. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  305. func (f TraverseEmployee) Intercept(next ent.Querier) ent.Querier {
  306. return next
  307. }
  308. // Traverse calls f(ctx, q).
  309. func (f TraverseEmployee) Traverse(ctx context.Context, q ent.Query) error {
  310. if q, ok := q.(*ent.EmployeeQuery); ok {
  311. return f(ctx, q)
  312. }
  313. return fmt.Errorf("unexpected query type %T. expect *ent.EmployeeQuery", q)
  314. }
  315. // The EmployeeConfigFunc type is an adapter to allow the use of ordinary function as a Querier.
  316. type EmployeeConfigFunc func(context.Context, *ent.EmployeeConfigQuery) (ent.Value, error)
  317. // Query calls f(ctx, q).
  318. func (f EmployeeConfigFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  319. if q, ok := q.(*ent.EmployeeConfigQuery); ok {
  320. return f(ctx, q)
  321. }
  322. return nil, fmt.Errorf("unexpected query type %T. expect *ent.EmployeeConfigQuery", q)
  323. }
  324. // The TraverseEmployeeConfig type is an adapter to allow the use of ordinary function as Traverser.
  325. type TraverseEmployeeConfig func(context.Context, *ent.EmployeeConfigQuery) error
  326. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  327. func (f TraverseEmployeeConfig) Intercept(next ent.Querier) ent.Querier {
  328. return next
  329. }
  330. // Traverse calls f(ctx, q).
  331. func (f TraverseEmployeeConfig) Traverse(ctx context.Context, q ent.Query) error {
  332. if q, ok := q.(*ent.EmployeeConfigQuery); ok {
  333. return f(ctx, q)
  334. }
  335. return fmt.Errorf("unexpected query type %T. expect *ent.EmployeeConfigQuery", q)
  336. }
  337. // The LabelFunc type is an adapter to allow the use of ordinary function as a Querier.
  338. type LabelFunc func(context.Context, *ent.LabelQuery) (ent.Value, error)
  339. // Query calls f(ctx, q).
  340. func (f LabelFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  341. if q, ok := q.(*ent.LabelQuery); ok {
  342. return f(ctx, q)
  343. }
  344. return nil, fmt.Errorf("unexpected query type %T. expect *ent.LabelQuery", q)
  345. }
  346. // The TraverseLabel type is an adapter to allow the use of ordinary function as Traverser.
  347. type TraverseLabel func(context.Context, *ent.LabelQuery) error
  348. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  349. func (f TraverseLabel) Intercept(next ent.Querier) ent.Querier {
  350. return next
  351. }
  352. // Traverse calls f(ctx, q).
  353. func (f TraverseLabel) Traverse(ctx context.Context, q ent.Query) error {
  354. if q, ok := q.(*ent.LabelQuery); ok {
  355. return f(ctx, q)
  356. }
  357. return fmt.Errorf("unexpected query type %T. expect *ent.LabelQuery", q)
  358. }
  359. // The LabelRelationshipFunc type is an adapter to allow the use of ordinary function as a Querier.
  360. type LabelRelationshipFunc func(context.Context, *ent.LabelRelationshipQuery) (ent.Value, error)
  361. // Query calls f(ctx, q).
  362. func (f LabelRelationshipFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  363. if q, ok := q.(*ent.LabelRelationshipQuery); ok {
  364. return f(ctx, q)
  365. }
  366. return nil, fmt.Errorf("unexpected query type %T. expect *ent.LabelRelationshipQuery", q)
  367. }
  368. // The TraverseLabelRelationship type is an adapter to allow the use of ordinary function as Traverser.
  369. type TraverseLabelRelationship func(context.Context, *ent.LabelRelationshipQuery) error
  370. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  371. func (f TraverseLabelRelationship) Intercept(next ent.Querier) ent.Querier {
  372. return next
  373. }
  374. // Traverse calls f(ctx, q).
  375. func (f TraverseLabelRelationship) Traverse(ctx context.Context, q ent.Query) error {
  376. if q, ok := q.(*ent.LabelRelationshipQuery); ok {
  377. return f(ctx, q)
  378. }
  379. return fmt.Errorf("unexpected query type %T. expect *ent.LabelRelationshipQuery", q)
  380. }
  381. // The LabelTaggingFunc type is an adapter to allow the use of ordinary function as a Querier.
  382. type LabelTaggingFunc func(context.Context, *ent.LabelTaggingQuery) (ent.Value, error)
  383. // Query calls f(ctx, q).
  384. func (f LabelTaggingFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  385. if q, ok := q.(*ent.LabelTaggingQuery); ok {
  386. return f(ctx, q)
  387. }
  388. return nil, fmt.Errorf("unexpected query type %T. expect *ent.LabelTaggingQuery", q)
  389. }
  390. // The TraverseLabelTagging type is an adapter to allow the use of ordinary function as Traverser.
  391. type TraverseLabelTagging func(context.Context, *ent.LabelTaggingQuery) error
  392. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  393. func (f TraverseLabelTagging) Intercept(next ent.Querier) ent.Querier {
  394. return next
  395. }
  396. // Traverse calls f(ctx, q).
  397. func (f TraverseLabelTagging) Traverse(ctx context.Context, q ent.Query) error {
  398. if q, ok := q.(*ent.LabelTaggingQuery); ok {
  399. return f(ctx, q)
  400. }
  401. return fmt.Errorf("unexpected query type %T. expect *ent.LabelTaggingQuery", q)
  402. }
  403. // The MessageFunc type is an adapter to allow the use of ordinary function as a Querier.
  404. type MessageFunc func(context.Context, *ent.MessageQuery) (ent.Value, error)
  405. // Query calls f(ctx, q).
  406. func (f MessageFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  407. if q, ok := q.(*ent.MessageQuery); ok {
  408. return f(ctx, q)
  409. }
  410. return nil, fmt.Errorf("unexpected query type %T. expect *ent.MessageQuery", q)
  411. }
  412. // The TraverseMessage type is an adapter to allow the use of ordinary function as Traverser.
  413. type TraverseMessage func(context.Context, *ent.MessageQuery) error
  414. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  415. func (f TraverseMessage) Intercept(next ent.Querier) ent.Querier {
  416. return next
  417. }
  418. // Traverse calls f(ctx, q).
  419. func (f TraverseMessage) Traverse(ctx context.Context, q ent.Query) error {
  420. if q, ok := q.(*ent.MessageQuery); ok {
  421. return f(ctx, q)
  422. }
  423. return fmt.Errorf("unexpected query type %T. expect *ent.MessageQuery", q)
  424. }
  425. // The MessageRecordsFunc type is an adapter to allow the use of ordinary function as a Querier.
  426. type MessageRecordsFunc func(context.Context, *ent.MessageRecordsQuery) (ent.Value, error)
  427. // Query calls f(ctx, q).
  428. func (f MessageRecordsFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  429. if q, ok := q.(*ent.MessageRecordsQuery); ok {
  430. return f(ctx, q)
  431. }
  432. return nil, fmt.Errorf("unexpected query type %T. expect *ent.MessageRecordsQuery", q)
  433. }
  434. // The TraverseMessageRecords type is an adapter to allow the use of ordinary function as Traverser.
  435. type TraverseMessageRecords func(context.Context, *ent.MessageRecordsQuery) error
  436. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  437. func (f TraverseMessageRecords) Intercept(next ent.Querier) ent.Querier {
  438. return next
  439. }
  440. // Traverse calls f(ctx, q).
  441. func (f TraverseMessageRecords) Traverse(ctx context.Context, q ent.Query) error {
  442. if q, ok := q.(*ent.MessageRecordsQuery); ok {
  443. return f(ctx, q)
  444. }
  445. return fmt.Errorf("unexpected query type %T. expect *ent.MessageRecordsQuery", q)
  446. }
  447. // The MsgFunc type is an adapter to allow the use of ordinary function as a Querier.
  448. type MsgFunc func(context.Context, *ent.MsgQuery) (ent.Value, error)
  449. // Query calls f(ctx, q).
  450. func (f MsgFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  451. if q, ok := q.(*ent.MsgQuery); ok {
  452. return f(ctx, q)
  453. }
  454. return nil, fmt.Errorf("unexpected query type %T. expect *ent.MsgQuery", q)
  455. }
  456. // The TraverseMsg type is an adapter to allow the use of ordinary function as Traverser.
  457. type TraverseMsg func(context.Context, *ent.MsgQuery) error
  458. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  459. func (f TraverseMsg) Intercept(next ent.Querier) ent.Querier {
  460. return next
  461. }
  462. // Traverse calls f(ctx, q).
  463. func (f TraverseMsg) Traverse(ctx context.Context, q ent.Query) error {
  464. if q, ok := q.(*ent.MsgQuery); ok {
  465. return f(ctx, q)
  466. }
  467. return fmt.Errorf("unexpected query type %T. expect *ent.MsgQuery", q)
  468. }
  469. // The ServerFunc type is an adapter to allow the use of ordinary function as a Querier.
  470. type ServerFunc func(context.Context, *ent.ServerQuery) (ent.Value, error)
  471. // Query calls f(ctx, q).
  472. func (f ServerFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  473. if q, ok := q.(*ent.ServerQuery); ok {
  474. return f(ctx, q)
  475. }
  476. return nil, fmt.Errorf("unexpected query type %T. expect *ent.ServerQuery", q)
  477. }
  478. // The TraverseServer type is an adapter to allow the use of ordinary function as Traverser.
  479. type TraverseServer func(context.Context, *ent.ServerQuery) error
  480. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  481. func (f TraverseServer) Intercept(next ent.Querier) ent.Querier {
  482. return next
  483. }
  484. // Traverse calls f(ctx, q).
  485. func (f TraverseServer) Traverse(ctx context.Context, q ent.Query) error {
  486. if q, ok := q.(*ent.ServerQuery); ok {
  487. return f(ctx, q)
  488. }
  489. return fmt.Errorf("unexpected query type %T. expect *ent.ServerQuery", q)
  490. }
  491. // The SopNodeFunc type is an adapter to allow the use of ordinary function as a Querier.
  492. type SopNodeFunc func(context.Context, *ent.SopNodeQuery) (ent.Value, error)
  493. // Query calls f(ctx, q).
  494. func (f SopNodeFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  495. if q, ok := q.(*ent.SopNodeQuery); ok {
  496. return f(ctx, q)
  497. }
  498. return nil, fmt.Errorf("unexpected query type %T. expect *ent.SopNodeQuery", q)
  499. }
  500. // The TraverseSopNode type is an adapter to allow the use of ordinary function as Traverser.
  501. type TraverseSopNode func(context.Context, *ent.SopNodeQuery) error
  502. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  503. func (f TraverseSopNode) Intercept(next ent.Querier) ent.Querier {
  504. return next
  505. }
  506. // Traverse calls f(ctx, q).
  507. func (f TraverseSopNode) Traverse(ctx context.Context, q ent.Query) error {
  508. if q, ok := q.(*ent.SopNodeQuery); ok {
  509. return f(ctx, q)
  510. }
  511. return fmt.Errorf("unexpected query type %T. expect *ent.SopNodeQuery", q)
  512. }
  513. // The SopStageFunc type is an adapter to allow the use of ordinary function as a Querier.
  514. type SopStageFunc func(context.Context, *ent.SopStageQuery) (ent.Value, error)
  515. // Query calls f(ctx, q).
  516. func (f SopStageFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  517. if q, ok := q.(*ent.SopStageQuery); ok {
  518. return f(ctx, q)
  519. }
  520. return nil, fmt.Errorf("unexpected query type %T. expect *ent.SopStageQuery", q)
  521. }
  522. // The TraverseSopStage type is an adapter to allow the use of ordinary function as Traverser.
  523. type TraverseSopStage func(context.Context, *ent.SopStageQuery) error
  524. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  525. func (f TraverseSopStage) Intercept(next ent.Querier) ent.Querier {
  526. return next
  527. }
  528. // Traverse calls f(ctx, q).
  529. func (f TraverseSopStage) Traverse(ctx context.Context, q ent.Query) error {
  530. if q, ok := q.(*ent.SopStageQuery); ok {
  531. return f(ctx, q)
  532. }
  533. return fmt.Errorf("unexpected query type %T. expect *ent.SopStageQuery", q)
  534. }
  535. // The SopTaskFunc type is an adapter to allow the use of ordinary function as a Querier.
  536. type SopTaskFunc func(context.Context, *ent.SopTaskQuery) (ent.Value, error)
  537. // Query calls f(ctx, q).
  538. func (f SopTaskFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  539. if q, ok := q.(*ent.SopTaskQuery); ok {
  540. return f(ctx, q)
  541. }
  542. return nil, fmt.Errorf("unexpected query type %T. expect *ent.SopTaskQuery", q)
  543. }
  544. // The TraverseSopTask type is an adapter to allow the use of ordinary function as Traverser.
  545. type TraverseSopTask func(context.Context, *ent.SopTaskQuery) error
  546. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  547. func (f TraverseSopTask) Intercept(next ent.Querier) ent.Querier {
  548. return next
  549. }
  550. // Traverse calls f(ctx, q).
  551. func (f TraverseSopTask) Traverse(ctx context.Context, q ent.Query) error {
  552. if q, ok := q.(*ent.SopTaskQuery); ok {
  553. return f(ctx, q)
  554. }
  555. return fmt.Errorf("unexpected query type %T. expect *ent.SopTaskQuery", q)
  556. }
  557. // The TokenFunc type is an adapter to allow the use of ordinary function as a Querier.
  558. type TokenFunc func(context.Context, *ent.TokenQuery) (ent.Value, error)
  559. // Query calls f(ctx, q).
  560. func (f TokenFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  561. if q, ok := q.(*ent.TokenQuery); ok {
  562. return f(ctx, q)
  563. }
  564. return nil, fmt.Errorf("unexpected query type %T. expect *ent.TokenQuery", q)
  565. }
  566. // The TraverseToken type is an adapter to allow the use of ordinary function as Traverser.
  567. type TraverseToken func(context.Context, *ent.TokenQuery) error
  568. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  569. func (f TraverseToken) Intercept(next ent.Querier) ent.Querier {
  570. return next
  571. }
  572. // Traverse calls f(ctx, q).
  573. func (f TraverseToken) Traverse(ctx context.Context, q ent.Query) error {
  574. if q, ok := q.(*ent.TokenQuery); ok {
  575. return f(ctx, q)
  576. }
  577. return fmt.Errorf("unexpected query type %T. expect *ent.TokenQuery", q)
  578. }
  579. // The TutorialFunc type is an adapter to allow the use of ordinary function as a Querier.
  580. type TutorialFunc func(context.Context, *ent.TutorialQuery) (ent.Value, error)
  581. // Query calls f(ctx, q).
  582. func (f TutorialFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  583. if q, ok := q.(*ent.TutorialQuery); ok {
  584. return f(ctx, q)
  585. }
  586. return nil, fmt.Errorf("unexpected query type %T. expect *ent.TutorialQuery", q)
  587. }
  588. // The TraverseTutorial type is an adapter to allow the use of ordinary function as Traverser.
  589. type TraverseTutorial func(context.Context, *ent.TutorialQuery) error
  590. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  591. func (f TraverseTutorial) Intercept(next ent.Querier) ent.Querier {
  592. return next
  593. }
  594. // Traverse calls f(ctx, q).
  595. func (f TraverseTutorial) Traverse(ctx context.Context, q ent.Query) error {
  596. if q, ok := q.(*ent.TutorialQuery); ok {
  597. return f(ctx, q)
  598. }
  599. return fmt.Errorf("unexpected query type %T. expect *ent.TutorialQuery", q)
  600. }
  601. // The UsageDetailFunc type is an adapter to allow the use of ordinary function as a Querier.
  602. type UsageDetailFunc func(context.Context, *ent.UsageDetailQuery) (ent.Value, error)
  603. // Query calls f(ctx, q).
  604. func (f UsageDetailFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  605. if q, ok := q.(*ent.UsageDetailQuery); ok {
  606. return f(ctx, q)
  607. }
  608. return nil, fmt.Errorf("unexpected query type %T. expect *ent.UsageDetailQuery", q)
  609. }
  610. // The TraverseUsageDetail type is an adapter to allow the use of ordinary function as Traverser.
  611. type TraverseUsageDetail func(context.Context, *ent.UsageDetailQuery) error
  612. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  613. func (f TraverseUsageDetail) Intercept(next ent.Querier) ent.Querier {
  614. return next
  615. }
  616. // Traverse calls f(ctx, q).
  617. func (f TraverseUsageDetail) Traverse(ctx context.Context, q ent.Query) error {
  618. if q, ok := q.(*ent.UsageDetailQuery); ok {
  619. return f(ctx, q)
  620. }
  621. return fmt.Errorf("unexpected query type %T. expect *ent.UsageDetailQuery", q)
  622. }
  623. // The UsageStatisticDayFunc type is an adapter to allow the use of ordinary function as a Querier.
  624. type UsageStatisticDayFunc func(context.Context, *ent.UsageStatisticDayQuery) (ent.Value, error)
  625. // Query calls f(ctx, q).
  626. func (f UsageStatisticDayFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  627. if q, ok := q.(*ent.UsageStatisticDayQuery); ok {
  628. return f(ctx, q)
  629. }
  630. return nil, fmt.Errorf("unexpected query type %T. expect *ent.UsageStatisticDayQuery", q)
  631. }
  632. // The TraverseUsageStatisticDay type is an adapter to allow the use of ordinary function as Traverser.
  633. type TraverseUsageStatisticDay func(context.Context, *ent.UsageStatisticDayQuery) error
  634. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  635. func (f TraverseUsageStatisticDay) Intercept(next ent.Querier) ent.Querier {
  636. return next
  637. }
  638. // Traverse calls f(ctx, q).
  639. func (f TraverseUsageStatisticDay) Traverse(ctx context.Context, q ent.Query) error {
  640. if q, ok := q.(*ent.UsageStatisticDayQuery); ok {
  641. return f(ctx, q)
  642. }
  643. return fmt.Errorf("unexpected query type %T. expect *ent.UsageStatisticDayQuery", q)
  644. }
  645. // The UsageStatisticHourFunc type is an adapter to allow the use of ordinary function as a Querier.
  646. type UsageStatisticHourFunc func(context.Context, *ent.UsageStatisticHourQuery) (ent.Value, error)
  647. // Query calls f(ctx, q).
  648. func (f UsageStatisticHourFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  649. if q, ok := q.(*ent.UsageStatisticHourQuery); ok {
  650. return f(ctx, q)
  651. }
  652. return nil, fmt.Errorf("unexpected query type %T. expect *ent.UsageStatisticHourQuery", q)
  653. }
  654. // The TraverseUsageStatisticHour type is an adapter to allow the use of ordinary function as Traverser.
  655. type TraverseUsageStatisticHour func(context.Context, *ent.UsageStatisticHourQuery) error
  656. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  657. func (f TraverseUsageStatisticHour) Intercept(next ent.Querier) ent.Querier {
  658. return next
  659. }
  660. // Traverse calls f(ctx, q).
  661. func (f TraverseUsageStatisticHour) Traverse(ctx context.Context, q ent.Query) error {
  662. if q, ok := q.(*ent.UsageStatisticHourQuery); ok {
  663. return f(ctx, q)
  664. }
  665. return fmt.Errorf("unexpected query type %T. expect *ent.UsageStatisticHourQuery", q)
  666. }
  667. // The UsageStatisticMonthFunc type is an adapter to allow the use of ordinary function as a Querier.
  668. type UsageStatisticMonthFunc func(context.Context, *ent.UsageStatisticMonthQuery) (ent.Value, error)
  669. // Query calls f(ctx, q).
  670. func (f UsageStatisticMonthFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  671. if q, ok := q.(*ent.UsageStatisticMonthQuery); ok {
  672. return f(ctx, q)
  673. }
  674. return nil, fmt.Errorf("unexpected query type %T. expect *ent.UsageStatisticMonthQuery", q)
  675. }
  676. // The TraverseUsageStatisticMonth type is an adapter to allow the use of ordinary function as Traverser.
  677. type TraverseUsageStatisticMonth func(context.Context, *ent.UsageStatisticMonthQuery) error
  678. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  679. func (f TraverseUsageStatisticMonth) Intercept(next ent.Querier) ent.Querier {
  680. return next
  681. }
  682. // Traverse calls f(ctx, q).
  683. func (f TraverseUsageStatisticMonth) Traverse(ctx context.Context, q ent.Query) error {
  684. if q, ok := q.(*ent.UsageStatisticMonthQuery); ok {
  685. return f(ctx, q)
  686. }
  687. return fmt.Errorf("unexpected query type %T. expect *ent.UsageStatisticMonthQuery", q)
  688. }
  689. // The UsageTotalFunc type is an adapter to allow the use of ordinary function as a Querier.
  690. type UsageTotalFunc func(context.Context, *ent.UsageTotalQuery) (ent.Value, error)
  691. // Query calls f(ctx, q).
  692. func (f UsageTotalFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  693. if q, ok := q.(*ent.UsageTotalQuery); ok {
  694. return f(ctx, q)
  695. }
  696. return nil, fmt.Errorf("unexpected query type %T. expect *ent.UsageTotalQuery", q)
  697. }
  698. // The TraverseUsageTotal type is an adapter to allow the use of ordinary function as Traverser.
  699. type TraverseUsageTotal func(context.Context, *ent.UsageTotalQuery) error
  700. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  701. func (f TraverseUsageTotal) Intercept(next ent.Querier) ent.Querier {
  702. return next
  703. }
  704. // Traverse calls f(ctx, q).
  705. func (f TraverseUsageTotal) Traverse(ctx context.Context, q ent.Query) error {
  706. if q, ok := q.(*ent.UsageTotalQuery); ok {
  707. return f(ctx, q)
  708. }
  709. return fmt.Errorf("unexpected query type %T. expect *ent.UsageTotalQuery", q)
  710. }
  711. // The WorkExperienceFunc type is an adapter to allow the use of ordinary function as a Querier.
  712. type WorkExperienceFunc func(context.Context, *ent.WorkExperienceQuery) (ent.Value, error)
  713. // Query calls f(ctx, q).
  714. func (f WorkExperienceFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  715. if q, ok := q.(*ent.WorkExperienceQuery); ok {
  716. return f(ctx, q)
  717. }
  718. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WorkExperienceQuery", q)
  719. }
  720. // The TraverseWorkExperience type is an adapter to allow the use of ordinary function as Traverser.
  721. type TraverseWorkExperience func(context.Context, *ent.WorkExperienceQuery) error
  722. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  723. func (f TraverseWorkExperience) Intercept(next ent.Querier) ent.Querier {
  724. return next
  725. }
  726. // Traverse calls f(ctx, q).
  727. func (f TraverseWorkExperience) Traverse(ctx context.Context, q ent.Query) error {
  728. if q, ok := q.(*ent.WorkExperienceQuery); ok {
  729. return f(ctx, q)
  730. }
  731. return fmt.Errorf("unexpected query type %T. expect *ent.WorkExperienceQuery", q)
  732. }
  733. // The WpChatroomFunc type is an adapter to allow the use of ordinary function as a Querier.
  734. type WpChatroomFunc func(context.Context, *ent.WpChatroomQuery) (ent.Value, error)
  735. // Query calls f(ctx, q).
  736. func (f WpChatroomFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  737. if q, ok := q.(*ent.WpChatroomQuery); ok {
  738. return f(ctx, q)
  739. }
  740. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WpChatroomQuery", q)
  741. }
  742. // The TraverseWpChatroom type is an adapter to allow the use of ordinary function as Traverser.
  743. type TraverseWpChatroom func(context.Context, *ent.WpChatroomQuery) error
  744. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  745. func (f TraverseWpChatroom) Intercept(next ent.Querier) ent.Querier {
  746. return next
  747. }
  748. // Traverse calls f(ctx, q).
  749. func (f TraverseWpChatroom) Traverse(ctx context.Context, q ent.Query) error {
  750. if q, ok := q.(*ent.WpChatroomQuery); ok {
  751. return f(ctx, q)
  752. }
  753. return fmt.Errorf("unexpected query type %T. expect *ent.WpChatroomQuery", q)
  754. }
  755. // The WpChatroomMemberFunc type is an adapter to allow the use of ordinary function as a Querier.
  756. type WpChatroomMemberFunc func(context.Context, *ent.WpChatroomMemberQuery) (ent.Value, error)
  757. // Query calls f(ctx, q).
  758. func (f WpChatroomMemberFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  759. if q, ok := q.(*ent.WpChatroomMemberQuery); ok {
  760. return f(ctx, q)
  761. }
  762. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WpChatroomMemberQuery", q)
  763. }
  764. // The TraverseWpChatroomMember type is an adapter to allow the use of ordinary function as Traverser.
  765. type TraverseWpChatroomMember func(context.Context, *ent.WpChatroomMemberQuery) error
  766. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  767. func (f TraverseWpChatroomMember) Intercept(next ent.Querier) ent.Querier {
  768. return next
  769. }
  770. // Traverse calls f(ctx, q).
  771. func (f TraverseWpChatroomMember) Traverse(ctx context.Context, q ent.Query) error {
  772. if q, ok := q.(*ent.WpChatroomMemberQuery); ok {
  773. return f(ctx, q)
  774. }
  775. return fmt.Errorf("unexpected query type %T. expect *ent.WpChatroomMemberQuery", q)
  776. }
  777. // The WxFunc type is an adapter to allow the use of ordinary function as a Querier.
  778. type WxFunc func(context.Context, *ent.WxQuery) (ent.Value, error)
  779. // Query calls f(ctx, q).
  780. func (f WxFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  781. if q, ok := q.(*ent.WxQuery); ok {
  782. return f(ctx, q)
  783. }
  784. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WxQuery", q)
  785. }
  786. // The TraverseWx type is an adapter to allow the use of ordinary function as Traverser.
  787. type TraverseWx func(context.Context, *ent.WxQuery) error
  788. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  789. func (f TraverseWx) Intercept(next ent.Querier) ent.Querier {
  790. return next
  791. }
  792. // Traverse calls f(ctx, q).
  793. func (f TraverseWx) Traverse(ctx context.Context, q ent.Query) error {
  794. if q, ok := q.(*ent.WxQuery); ok {
  795. return f(ctx, q)
  796. }
  797. return fmt.Errorf("unexpected query type %T. expect *ent.WxQuery", q)
  798. }
  799. // The WxCardFunc type is an adapter to allow the use of ordinary function as a Querier.
  800. type WxCardFunc func(context.Context, *ent.WxCardQuery) (ent.Value, error)
  801. // Query calls f(ctx, q).
  802. func (f WxCardFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  803. if q, ok := q.(*ent.WxCardQuery); ok {
  804. return f(ctx, q)
  805. }
  806. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WxCardQuery", q)
  807. }
  808. // The TraverseWxCard type is an adapter to allow the use of ordinary function as Traverser.
  809. type TraverseWxCard func(context.Context, *ent.WxCardQuery) error
  810. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  811. func (f TraverseWxCard) Intercept(next ent.Querier) ent.Querier {
  812. return next
  813. }
  814. // Traverse calls f(ctx, q).
  815. func (f TraverseWxCard) Traverse(ctx context.Context, q ent.Query) error {
  816. if q, ok := q.(*ent.WxCardQuery); ok {
  817. return f(ctx, q)
  818. }
  819. return fmt.Errorf("unexpected query type %T. expect *ent.WxCardQuery", q)
  820. }
  821. // The WxCardUserFunc type is an adapter to allow the use of ordinary function as a Querier.
  822. type WxCardUserFunc func(context.Context, *ent.WxCardUserQuery) (ent.Value, error)
  823. // Query calls f(ctx, q).
  824. func (f WxCardUserFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  825. if q, ok := q.(*ent.WxCardUserQuery); ok {
  826. return f(ctx, q)
  827. }
  828. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WxCardUserQuery", q)
  829. }
  830. // The TraverseWxCardUser type is an adapter to allow the use of ordinary function as Traverser.
  831. type TraverseWxCardUser func(context.Context, *ent.WxCardUserQuery) error
  832. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  833. func (f TraverseWxCardUser) Intercept(next ent.Querier) ent.Querier {
  834. return next
  835. }
  836. // Traverse calls f(ctx, q).
  837. func (f TraverseWxCardUser) Traverse(ctx context.Context, q ent.Query) error {
  838. if q, ok := q.(*ent.WxCardUserQuery); ok {
  839. return f(ctx, q)
  840. }
  841. return fmt.Errorf("unexpected query type %T. expect *ent.WxCardUserQuery", q)
  842. }
  843. // The WxCardVisitFunc type is an adapter to allow the use of ordinary function as a Querier.
  844. type WxCardVisitFunc func(context.Context, *ent.WxCardVisitQuery) (ent.Value, error)
  845. // Query calls f(ctx, q).
  846. func (f WxCardVisitFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  847. if q, ok := q.(*ent.WxCardVisitQuery); ok {
  848. return f(ctx, q)
  849. }
  850. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WxCardVisitQuery", q)
  851. }
  852. // The TraverseWxCardVisit type is an adapter to allow the use of ordinary function as Traverser.
  853. type TraverseWxCardVisit func(context.Context, *ent.WxCardVisitQuery) error
  854. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  855. func (f TraverseWxCardVisit) Intercept(next ent.Querier) ent.Querier {
  856. return next
  857. }
  858. // Traverse calls f(ctx, q).
  859. func (f TraverseWxCardVisit) Traverse(ctx context.Context, q ent.Query) error {
  860. if q, ok := q.(*ent.WxCardVisitQuery); ok {
  861. return f(ctx, q)
  862. }
  863. return fmt.Errorf("unexpected query type %T. expect *ent.WxCardVisitQuery", q)
  864. }
  865. // NewQuery returns the generic Query interface for the given typed query.
  866. func NewQuery(q ent.Query) (Query, error) {
  867. switch q := q.(type) {
  868. case *ent.AgentQuery:
  869. return &query[*ent.AgentQuery, predicate.Agent, agent.OrderOption]{typ: ent.TypeAgent, tq: q}, nil
  870. case *ent.AgentBaseQuery:
  871. return &query[*ent.AgentBaseQuery, predicate.AgentBase, agentbase.OrderOption]{typ: ent.TypeAgentBase, tq: q}, nil
  872. case *ent.AliyunAvatarQuery:
  873. return &query[*ent.AliyunAvatarQuery, predicate.AliyunAvatar, aliyunavatar.OrderOption]{typ: ent.TypeAliyunAvatar, tq: q}, nil
  874. case *ent.AllocAgentQuery:
  875. return &query[*ent.AllocAgentQuery, predicate.AllocAgent, allocagent.OrderOption]{typ: ent.TypeAllocAgent, tq: q}, nil
  876. case *ent.BatchMsgQuery:
  877. return &query[*ent.BatchMsgQuery, predicate.BatchMsg, batchmsg.OrderOption]{typ: ent.TypeBatchMsg, tq: q}, nil
  878. case *ent.CategoryQuery:
  879. return &query[*ent.CategoryQuery, predicate.Category, category.OrderOption]{typ: ent.TypeCategory, tq: q}, nil
  880. case *ent.ChatRecordsQuery:
  881. return &query[*ent.ChatRecordsQuery, predicate.ChatRecords, chatrecords.OrderOption]{typ: ent.TypeChatRecords, tq: q}, nil
  882. case *ent.ChatSessionQuery:
  883. return &query[*ent.ChatSessionQuery, predicate.ChatSession, chatsession.OrderOption]{typ: ent.TypeChatSession, tq: q}, nil
  884. case *ent.ContactQuery:
  885. return &query[*ent.ContactQuery, predicate.Contact, contact.OrderOption]{typ: ent.TypeContact, tq: q}, nil
  886. case *ent.EmployeeQuery:
  887. return &query[*ent.EmployeeQuery, predicate.Employee, employee.OrderOption]{typ: ent.TypeEmployee, tq: q}, nil
  888. case *ent.EmployeeConfigQuery:
  889. return &query[*ent.EmployeeConfigQuery, predicate.EmployeeConfig, employeeconfig.OrderOption]{typ: ent.TypeEmployeeConfig, tq: q}, nil
  890. case *ent.LabelQuery:
  891. return &query[*ent.LabelQuery, predicate.Label, label.OrderOption]{typ: ent.TypeLabel, tq: q}, nil
  892. case *ent.LabelRelationshipQuery:
  893. return &query[*ent.LabelRelationshipQuery, predicate.LabelRelationship, labelrelationship.OrderOption]{typ: ent.TypeLabelRelationship, tq: q}, nil
  894. case *ent.LabelTaggingQuery:
  895. return &query[*ent.LabelTaggingQuery, predicate.LabelTagging, labeltagging.OrderOption]{typ: ent.TypeLabelTagging, tq: q}, nil
  896. case *ent.MessageQuery:
  897. return &query[*ent.MessageQuery, predicate.Message, message.OrderOption]{typ: ent.TypeMessage, tq: q}, nil
  898. case *ent.MessageRecordsQuery:
  899. return &query[*ent.MessageRecordsQuery, predicate.MessageRecords, messagerecords.OrderOption]{typ: ent.TypeMessageRecords, tq: q}, nil
  900. case *ent.MsgQuery:
  901. return &query[*ent.MsgQuery, predicate.Msg, msg.OrderOption]{typ: ent.TypeMsg, tq: q}, nil
  902. case *ent.ServerQuery:
  903. return &query[*ent.ServerQuery, predicate.Server, server.OrderOption]{typ: ent.TypeServer, tq: q}, nil
  904. case *ent.SopNodeQuery:
  905. return &query[*ent.SopNodeQuery, predicate.SopNode, sopnode.OrderOption]{typ: ent.TypeSopNode, tq: q}, nil
  906. case *ent.SopStageQuery:
  907. return &query[*ent.SopStageQuery, predicate.SopStage, sopstage.OrderOption]{typ: ent.TypeSopStage, tq: q}, nil
  908. case *ent.SopTaskQuery:
  909. return &query[*ent.SopTaskQuery, predicate.SopTask, soptask.OrderOption]{typ: ent.TypeSopTask, tq: q}, nil
  910. case *ent.TokenQuery:
  911. return &query[*ent.TokenQuery, predicate.Token, token.OrderOption]{typ: ent.TypeToken, tq: q}, nil
  912. case *ent.TutorialQuery:
  913. return &query[*ent.TutorialQuery, predicate.Tutorial, tutorial.OrderOption]{typ: ent.TypeTutorial, tq: q}, nil
  914. case *ent.UsageDetailQuery:
  915. return &query[*ent.UsageDetailQuery, predicate.UsageDetail, usagedetail.OrderOption]{typ: ent.TypeUsageDetail, tq: q}, nil
  916. case *ent.UsageStatisticDayQuery:
  917. return &query[*ent.UsageStatisticDayQuery, predicate.UsageStatisticDay, usagestatisticday.OrderOption]{typ: ent.TypeUsageStatisticDay, tq: q}, nil
  918. case *ent.UsageStatisticHourQuery:
  919. return &query[*ent.UsageStatisticHourQuery, predicate.UsageStatisticHour, usagestatistichour.OrderOption]{typ: ent.TypeUsageStatisticHour, tq: q}, nil
  920. case *ent.UsageStatisticMonthQuery:
  921. return &query[*ent.UsageStatisticMonthQuery, predicate.UsageStatisticMonth, usagestatisticmonth.OrderOption]{typ: ent.TypeUsageStatisticMonth, tq: q}, nil
  922. case *ent.UsageTotalQuery:
  923. return &query[*ent.UsageTotalQuery, predicate.UsageTotal, usagetotal.OrderOption]{typ: ent.TypeUsageTotal, tq: q}, nil
  924. case *ent.WorkExperienceQuery:
  925. return &query[*ent.WorkExperienceQuery, predicate.WorkExperience, workexperience.OrderOption]{typ: ent.TypeWorkExperience, tq: q}, nil
  926. case *ent.WpChatroomQuery:
  927. return &query[*ent.WpChatroomQuery, predicate.WpChatroom, wpchatroom.OrderOption]{typ: ent.TypeWpChatroom, tq: q}, nil
  928. case *ent.WpChatroomMemberQuery:
  929. return &query[*ent.WpChatroomMemberQuery, predicate.WpChatroomMember, wpchatroommember.OrderOption]{typ: ent.TypeWpChatroomMember, tq: q}, nil
  930. case *ent.WxQuery:
  931. return &query[*ent.WxQuery, predicate.Wx, wx.OrderOption]{typ: ent.TypeWx, tq: q}, nil
  932. case *ent.WxCardQuery:
  933. return &query[*ent.WxCardQuery, predicate.WxCard, wxcard.OrderOption]{typ: ent.TypeWxCard, tq: q}, nil
  934. case *ent.WxCardUserQuery:
  935. return &query[*ent.WxCardUserQuery, predicate.WxCardUser, wxcarduser.OrderOption]{typ: ent.TypeWxCardUser, tq: q}, nil
  936. case *ent.WxCardVisitQuery:
  937. return &query[*ent.WxCardVisitQuery, predicate.WxCardVisit, wxcardvisit.OrderOption]{typ: ent.TypeWxCardVisit, tq: q}, nil
  938. default:
  939. return nil, fmt.Errorf("unknown query type %T", q)
  940. }
  941. }
  942. type query[T any, P ~func(*sql.Selector), R ~func(*sql.Selector)] struct {
  943. typ string
  944. tq interface {
  945. Limit(int) T
  946. Offset(int) T
  947. Unique(bool) T
  948. Order(...R) T
  949. Where(...P) T
  950. }
  951. }
  952. func (q query[T, P, R]) Type() string {
  953. return q.typ
  954. }
  955. func (q query[T, P, R]) Limit(limit int) {
  956. q.tq.Limit(limit)
  957. }
  958. func (q query[T, P, R]) Offset(offset int) {
  959. q.tq.Offset(offset)
  960. }
  961. func (q query[T, P, R]) Unique(unique bool) {
  962. q.tq.Unique(unique)
  963. }
  964. func (q query[T, P, R]) Order(orders ...func(*sql.Selector)) {
  965. rs := make([]R, len(orders))
  966. for i := range orders {
  967. rs[i] = orders[i]
  968. }
  969. q.tq.Order(rs...)
  970. }
  971. func (q query[T, P, R]) WhereP(ps ...func(*sql.Selector)) {
  972. p := make([]P, len(ps))
  973. for i := range ps {
  974. p[i] = ps[i]
  975. }
  976. q.tq.Where(p...)
  977. }