intercept.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509
  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/batchmsg"
  9. "wechat-api/ent/contact"
  10. "wechat-api/ent/label"
  11. "wechat-api/ent/labelrelationship"
  12. "wechat-api/ent/message"
  13. "wechat-api/ent/messagerecords"
  14. "wechat-api/ent/msg"
  15. "wechat-api/ent/predicate"
  16. "wechat-api/ent/server"
  17. "wechat-api/ent/sopnode"
  18. "wechat-api/ent/sopstage"
  19. "wechat-api/ent/soptask"
  20. "wechat-api/ent/wx"
  21. "entgo.io/ent/dialect/sql"
  22. )
  23. // The Query interface represents an operation that queries a graph.
  24. // By using this interface, users can write generic code that manipulates
  25. // query builders of different types.
  26. type Query interface {
  27. // Type returns the string representation of the query type.
  28. Type() string
  29. // Limit the number of records to be returned by this query.
  30. Limit(int)
  31. // Offset to start from.
  32. Offset(int)
  33. // Unique configures the query builder to filter duplicate records.
  34. Unique(bool)
  35. // Order specifies how the records should be ordered.
  36. Order(...func(*sql.Selector))
  37. // WhereP appends storage-level predicates to the query builder. Using this method, users
  38. // can use type-assertion to append predicates that do not depend on any generated package.
  39. WhereP(...func(*sql.Selector))
  40. }
  41. // The Func type is an adapter that allows ordinary functions to be used as interceptors.
  42. // Unlike traversal functions, interceptors are skipped during graph traversals. Note that the
  43. // implementation of Func is different from the one defined in entgo.io/ent.InterceptFunc.
  44. type Func func(context.Context, Query) error
  45. // Intercept calls f(ctx, q) and then applied the next Querier.
  46. func (f Func) Intercept(next ent.Querier) ent.Querier {
  47. return ent.QuerierFunc(func(ctx context.Context, q ent.Query) (ent.Value, error) {
  48. query, err := NewQuery(q)
  49. if err != nil {
  50. return nil, err
  51. }
  52. if err := f(ctx, query); err != nil {
  53. return nil, err
  54. }
  55. return next.Query(ctx, q)
  56. })
  57. }
  58. // The TraverseFunc type is an adapter to allow the use of ordinary function as Traverser.
  59. // If f is a function with the appropriate signature, TraverseFunc(f) is a Traverser that calls f.
  60. type TraverseFunc func(context.Context, Query) error
  61. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  62. func (f TraverseFunc) Intercept(next ent.Querier) ent.Querier {
  63. return next
  64. }
  65. // Traverse calls f(ctx, q).
  66. func (f TraverseFunc) Traverse(ctx context.Context, q ent.Query) error {
  67. query, err := NewQuery(q)
  68. if err != nil {
  69. return err
  70. }
  71. return f(ctx, query)
  72. }
  73. // The AgentFunc type is an adapter to allow the use of ordinary function as a Querier.
  74. type AgentFunc func(context.Context, *ent.AgentQuery) (ent.Value, error)
  75. // Query calls f(ctx, q).
  76. func (f AgentFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  77. if q, ok := q.(*ent.AgentQuery); ok {
  78. return f(ctx, q)
  79. }
  80. return nil, fmt.Errorf("unexpected query type %T. expect *ent.AgentQuery", q)
  81. }
  82. // The TraverseAgent type is an adapter to allow the use of ordinary function as Traverser.
  83. type TraverseAgent func(context.Context, *ent.AgentQuery) error
  84. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  85. func (f TraverseAgent) Intercept(next ent.Querier) ent.Querier {
  86. return next
  87. }
  88. // Traverse calls f(ctx, q).
  89. func (f TraverseAgent) Traverse(ctx context.Context, q ent.Query) error {
  90. if q, ok := q.(*ent.AgentQuery); ok {
  91. return f(ctx, q)
  92. }
  93. return fmt.Errorf("unexpected query type %T. expect *ent.AgentQuery", q)
  94. }
  95. // The BatchMsgFunc type is an adapter to allow the use of ordinary function as a Querier.
  96. type BatchMsgFunc func(context.Context, *ent.BatchMsgQuery) (ent.Value, error)
  97. // Query calls f(ctx, q).
  98. func (f BatchMsgFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  99. if q, ok := q.(*ent.BatchMsgQuery); ok {
  100. return f(ctx, q)
  101. }
  102. return nil, fmt.Errorf("unexpected query type %T. expect *ent.BatchMsgQuery", q)
  103. }
  104. // The TraverseBatchMsg type is an adapter to allow the use of ordinary function as Traverser.
  105. type TraverseBatchMsg func(context.Context, *ent.BatchMsgQuery) error
  106. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  107. func (f TraverseBatchMsg) Intercept(next ent.Querier) ent.Querier {
  108. return next
  109. }
  110. // Traverse calls f(ctx, q).
  111. func (f TraverseBatchMsg) Traverse(ctx context.Context, q ent.Query) error {
  112. if q, ok := q.(*ent.BatchMsgQuery); ok {
  113. return f(ctx, q)
  114. }
  115. return fmt.Errorf("unexpected query type %T. expect *ent.BatchMsgQuery", q)
  116. }
  117. // The ContactFunc type is an adapter to allow the use of ordinary function as a Querier.
  118. type ContactFunc func(context.Context, *ent.ContactQuery) (ent.Value, error)
  119. // Query calls f(ctx, q).
  120. func (f ContactFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  121. if q, ok := q.(*ent.ContactQuery); ok {
  122. return f(ctx, q)
  123. }
  124. return nil, fmt.Errorf("unexpected query type %T. expect *ent.ContactQuery", q)
  125. }
  126. // The TraverseContact type is an adapter to allow the use of ordinary function as Traverser.
  127. type TraverseContact func(context.Context, *ent.ContactQuery) error
  128. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  129. func (f TraverseContact) Intercept(next ent.Querier) ent.Querier {
  130. return next
  131. }
  132. // Traverse calls f(ctx, q).
  133. func (f TraverseContact) Traverse(ctx context.Context, q ent.Query) error {
  134. if q, ok := q.(*ent.ContactQuery); ok {
  135. return f(ctx, q)
  136. }
  137. return fmt.Errorf("unexpected query type %T. expect *ent.ContactQuery", q)
  138. }
  139. // The LabelFunc type is an adapter to allow the use of ordinary function as a Querier.
  140. type LabelFunc func(context.Context, *ent.LabelQuery) (ent.Value, error)
  141. // Query calls f(ctx, q).
  142. func (f LabelFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  143. if q, ok := q.(*ent.LabelQuery); ok {
  144. return f(ctx, q)
  145. }
  146. return nil, fmt.Errorf("unexpected query type %T. expect *ent.LabelQuery", q)
  147. }
  148. // The TraverseLabel type is an adapter to allow the use of ordinary function as Traverser.
  149. type TraverseLabel func(context.Context, *ent.LabelQuery) error
  150. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  151. func (f TraverseLabel) Intercept(next ent.Querier) ent.Querier {
  152. return next
  153. }
  154. // Traverse calls f(ctx, q).
  155. func (f TraverseLabel) Traverse(ctx context.Context, q ent.Query) error {
  156. if q, ok := q.(*ent.LabelQuery); ok {
  157. return f(ctx, q)
  158. }
  159. return fmt.Errorf("unexpected query type %T. expect *ent.LabelQuery", q)
  160. }
  161. // The LabelRelationshipFunc type is an adapter to allow the use of ordinary function as a Querier.
  162. type LabelRelationshipFunc func(context.Context, *ent.LabelRelationshipQuery) (ent.Value, error)
  163. // Query calls f(ctx, q).
  164. func (f LabelRelationshipFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  165. if q, ok := q.(*ent.LabelRelationshipQuery); ok {
  166. return f(ctx, q)
  167. }
  168. return nil, fmt.Errorf("unexpected query type %T. expect *ent.LabelRelationshipQuery", q)
  169. }
  170. // The TraverseLabelRelationship type is an adapter to allow the use of ordinary function as Traverser.
  171. type TraverseLabelRelationship func(context.Context, *ent.LabelRelationshipQuery) error
  172. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  173. func (f TraverseLabelRelationship) Intercept(next ent.Querier) ent.Querier {
  174. return next
  175. }
  176. // Traverse calls f(ctx, q).
  177. func (f TraverseLabelRelationship) Traverse(ctx context.Context, q ent.Query) error {
  178. if q, ok := q.(*ent.LabelRelationshipQuery); ok {
  179. return f(ctx, q)
  180. }
  181. return fmt.Errorf("unexpected query type %T. expect *ent.LabelRelationshipQuery", q)
  182. }
  183. // The MessageFunc type is an adapter to allow the use of ordinary function as a Querier.
  184. type MessageFunc func(context.Context, *ent.MessageQuery) (ent.Value, error)
  185. // Query calls f(ctx, q).
  186. func (f MessageFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  187. if q, ok := q.(*ent.MessageQuery); ok {
  188. return f(ctx, q)
  189. }
  190. return nil, fmt.Errorf("unexpected query type %T. expect *ent.MessageQuery", q)
  191. }
  192. // The TraverseMessage type is an adapter to allow the use of ordinary function as Traverser.
  193. type TraverseMessage func(context.Context, *ent.MessageQuery) error
  194. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  195. func (f TraverseMessage) Intercept(next ent.Querier) ent.Querier {
  196. return next
  197. }
  198. // Traverse calls f(ctx, q).
  199. func (f TraverseMessage) Traverse(ctx context.Context, q ent.Query) error {
  200. if q, ok := q.(*ent.MessageQuery); ok {
  201. return f(ctx, q)
  202. }
  203. return fmt.Errorf("unexpected query type %T. expect *ent.MessageQuery", q)
  204. }
  205. // The MessageRecordsFunc type is an adapter to allow the use of ordinary function as a Querier.
  206. type MessageRecordsFunc func(context.Context, *ent.MessageRecordsQuery) (ent.Value, error)
  207. // Query calls f(ctx, q).
  208. func (f MessageRecordsFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  209. if q, ok := q.(*ent.MessageRecordsQuery); ok {
  210. return f(ctx, q)
  211. }
  212. return nil, fmt.Errorf("unexpected query type %T. expect *ent.MessageRecordsQuery", q)
  213. }
  214. // The TraverseMessageRecords type is an adapter to allow the use of ordinary function as Traverser.
  215. type TraverseMessageRecords func(context.Context, *ent.MessageRecordsQuery) error
  216. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  217. func (f TraverseMessageRecords) Intercept(next ent.Querier) ent.Querier {
  218. return next
  219. }
  220. // Traverse calls f(ctx, q).
  221. func (f TraverseMessageRecords) Traverse(ctx context.Context, q ent.Query) error {
  222. if q, ok := q.(*ent.MessageRecordsQuery); ok {
  223. return f(ctx, q)
  224. }
  225. return fmt.Errorf("unexpected query type %T. expect *ent.MessageRecordsQuery", q)
  226. }
  227. // The MsgFunc type is an adapter to allow the use of ordinary function as a Querier.
  228. type MsgFunc func(context.Context, *ent.MsgQuery) (ent.Value, error)
  229. // Query calls f(ctx, q).
  230. func (f MsgFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  231. if q, ok := q.(*ent.MsgQuery); ok {
  232. return f(ctx, q)
  233. }
  234. return nil, fmt.Errorf("unexpected query type %T. expect *ent.MsgQuery", q)
  235. }
  236. // The TraverseMsg type is an adapter to allow the use of ordinary function as Traverser.
  237. type TraverseMsg func(context.Context, *ent.MsgQuery) error
  238. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  239. func (f TraverseMsg) Intercept(next ent.Querier) ent.Querier {
  240. return next
  241. }
  242. // Traverse calls f(ctx, q).
  243. func (f TraverseMsg) Traverse(ctx context.Context, q ent.Query) error {
  244. if q, ok := q.(*ent.MsgQuery); ok {
  245. return f(ctx, q)
  246. }
  247. return fmt.Errorf("unexpected query type %T. expect *ent.MsgQuery", q)
  248. }
  249. // The ServerFunc type is an adapter to allow the use of ordinary function as a Querier.
  250. type ServerFunc func(context.Context, *ent.ServerQuery) (ent.Value, error)
  251. // Query calls f(ctx, q).
  252. func (f ServerFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  253. if q, ok := q.(*ent.ServerQuery); ok {
  254. return f(ctx, q)
  255. }
  256. return nil, fmt.Errorf("unexpected query type %T. expect *ent.ServerQuery", q)
  257. }
  258. // The TraverseServer type is an adapter to allow the use of ordinary function as Traverser.
  259. type TraverseServer func(context.Context, *ent.ServerQuery) error
  260. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  261. func (f TraverseServer) Intercept(next ent.Querier) ent.Querier {
  262. return next
  263. }
  264. // Traverse calls f(ctx, q).
  265. func (f TraverseServer) Traverse(ctx context.Context, q ent.Query) error {
  266. if q, ok := q.(*ent.ServerQuery); ok {
  267. return f(ctx, q)
  268. }
  269. return fmt.Errorf("unexpected query type %T. expect *ent.ServerQuery", q)
  270. }
  271. // The SopNodeFunc type is an adapter to allow the use of ordinary function as a Querier.
  272. type SopNodeFunc func(context.Context, *ent.SopNodeQuery) (ent.Value, error)
  273. // Query calls f(ctx, q).
  274. func (f SopNodeFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  275. if q, ok := q.(*ent.SopNodeQuery); ok {
  276. return f(ctx, q)
  277. }
  278. return nil, fmt.Errorf("unexpected query type %T. expect *ent.SopNodeQuery", q)
  279. }
  280. // The TraverseSopNode type is an adapter to allow the use of ordinary function as Traverser.
  281. type TraverseSopNode func(context.Context, *ent.SopNodeQuery) error
  282. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  283. func (f TraverseSopNode) Intercept(next ent.Querier) ent.Querier {
  284. return next
  285. }
  286. // Traverse calls f(ctx, q).
  287. func (f TraverseSopNode) Traverse(ctx context.Context, q ent.Query) error {
  288. if q, ok := q.(*ent.SopNodeQuery); ok {
  289. return f(ctx, q)
  290. }
  291. return fmt.Errorf("unexpected query type %T. expect *ent.SopNodeQuery", q)
  292. }
  293. // The SopStageFunc type is an adapter to allow the use of ordinary function as a Querier.
  294. type SopStageFunc func(context.Context, *ent.SopStageQuery) (ent.Value, error)
  295. // Query calls f(ctx, q).
  296. func (f SopStageFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  297. if q, ok := q.(*ent.SopStageQuery); ok {
  298. return f(ctx, q)
  299. }
  300. return nil, fmt.Errorf("unexpected query type %T. expect *ent.SopStageQuery", q)
  301. }
  302. // The TraverseSopStage type is an adapter to allow the use of ordinary function as Traverser.
  303. type TraverseSopStage func(context.Context, *ent.SopStageQuery) error
  304. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  305. func (f TraverseSopStage) Intercept(next ent.Querier) ent.Querier {
  306. return next
  307. }
  308. // Traverse calls f(ctx, q).
  309. func (f TraverseSopStage) Traverse(ctx context.Context, q ent.Query) error {
  310. if q, ok := q.(*ent.SopStageQuery); ok {
  311. return f(ctx, q)
  312. }
  313. return fmt.Errorf("unexpected query type %T. expect *ent.SopStageQuery", q)
  314. }
  315. // The SopTaskFunc type is an adapter to allow the use of ordinary function as a Querier.
  316. type SopTaskFunc func(context.Context, *ent.SopTaskQuery) (ent.Value, error)
  317. // Query calls f(ctx, q).
  318. func (f SopTaskFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  319. if q, ok := q.(*ent.SopTaskQuery); ok {
  320. return f(ctx, q)
  321. }
  322. return nil, fmt.Errorf("unexpected query type %T. expect *ent.SopTaskQuery", q)
  323. }
  324. // The TraverseSopTask type is an adapter to allow the use of ordinary function as Traverser.
  325. type TraverseSopTask func(context.Context, *ent.SopTaskQuery) error
  326. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  327. func (f TraverseSopTask) Intercept(next ent.Querier) ent.Querier {
  328. return next
  329. }
  330. // Traverse calls f(ctx, q).
  331. func (f TraverseSopTask) Traverse(ctx context.Context, q ent.Query) error {
  332. if q, ok := q.(*ent.SopTaskQuery); ok {
  333. return f(ctx, q)
  334. }
  335. return fmt.Errorf("unexpected query type %T. expect *ent.SopTaskQuery", q)
  336. }
  337. // The WxFunc type is an adapter to allow the use of ordinary function as a Querier.
  338. type WxFunc func(context.Context, *ent.WxQuery) (ent.Value, error)
  339. // Query calls f(ctx, q).
  340. func (f WxFunc) Query(ctx context.Context, q ent.Query) (ent.Value, error) {
  341. if q, ok := q.(*ent.WxQuery); ok {
  342. return f(ctx, q)
  343. }
  344. return nil, fmt.Errorf("unexpected query type %T. expect *ent.WxQuery", q)
  345. }
  346. // The TraverseWx type is an adapter to allow the use of ordinary function as Traverser.
  347. type TraverseWx func(context.Context, *ent.WxQuery) error
  348. // Intercept is a dummy implementation of Intercept that returns the next Querier in the pipeline.
  349. func (f TraverseWx) Intercept(next ent.Querier) ent.Querier {
  350. return next
  351. }
  352. // Traverse calls f(ctx, q).
  353. func (f TraverseWx) Traverse(ctx context.Context, q ent.Query) error {
  354. if q, ok := q.(*ent.WxQuery); ok {
  355. return f(ctx, q)
  356. }
  357. return fmt.Errorf("unexpected query type %T. expect *ent.WxQuery", q)
  358. }
  359. // NewQuery returns the generic Query interface for the given typed query.
  360. func NewQuery(q ent.Query) (Query, error) {
  361. switch q := q.(type) {
  362. case *ent.AgentQuery:
  363. return &query[*ent.AgentQuery, predicate.Agent, agent.OrderOption]{typ: ent.TypeAgent, tq: q}, nil
  364. case *ent.BatchMsgQuery:
  365. return &query[*ent.BatchMsgQuery, predicate.BatchMsg, batchmsg.OrderOption]{typ: ent.TypeBatchMsg, tq: q}, nil
  366. case *ent.ContactQuery:
  367. return &query[*ent.ContactQuery, predicate.Contact, contact.OrderOption]{typ: ent.TypeContact, tq: q}, nil
  368. case *ent.LabelQuery:
  369. return &query[*ent.LabelQuery, predicate.Label, label.OrderOption]{typ: ent.TypeLabel, tq: q}, nil
  370. case *ent.LabelRelationshipQuery:
  371. return &query[*ent.LabelRelationshipQuery, predicate.LabelRelationship, labelrelationship.OrderOption]{typ: ent.TypeLabelRelationship, tq: q}, nil
  372. case *ent.MessageQuery:
  373. return &query[*ent.MessageQuery, predicate.Message, message.OrderOption]{typ: ent.TypeMessage, tq: q}, nil
  374. case *ent.MessageRecordsQuery:
  375. return &query[*ent.MessageRecordsQuery, predicate.MessageRecords, messagerecords.OrderOption]{typ: ent.TypeMessageRecords, tq: q}, nil
  376. case *ent.MsgQuery:
  377. return &query[*ent.MsgQuery, predicate.Msg, msg.OrderOption]{typ: ent.TypeMsg, tq: q}, nil
  378. case *ent.ServerQuery:
  379. return &query[*ent.ServerQuery, predicate.Server, server.OrderOption]{typ: ent.TypeServer, tq: q}, nil
  380. case *ent.SopNodeQuery:
  381. return &query[*ent.SopNodeQuery, predicate.SopNode, sopnode.OrderOption]{typ: ent.TypeSopNode, tq: q}, nil
  382. case *ent.SopStageQuery:
  383. return &query[*ent.SopStageQuery, predicate.SopStage, sopstage.OrderOption]{typ: ent.TypeSopStage, tq: q}, nil
  384. case *ent.SopTaskQuery:
  385. return &query[*ent.SopTaskQuery, predicate.SopTask, soptask.OrderOption]{typ: ent.TypeSopTask, tq: q}, nil
  386. case *ent.WxQuery:
  387. return &query[*ent.WxQuery, predicate.Wx, wx.OrderOption]{typ: ent.TypeWx, tq: q}, nil
  388. default:
  389. return nil, fmt.Errorf("unknown query type %T", q)
  390. }
  391. }
  392. type query[T any, P ~func(*sql.Selector), R ~func(*sql.Selector)] struct {
  393. typ string
  394. tq interface {
  395. Limit(int) T
  396. Offset(int) T
  397. Unique(bool) T
  398. Order(...R) T
  399. Where(...P) T
  400. }
  401. }
  402. func (q query[T, P, R]) Type() string {
  403. return q.typ
  404. }
  405. func (q query[T, P, R]) Limit(limit int) {
  406. q.tq.Limit(limit)
  407. }
  408. func (q query[T, P, R]) Offset(offset int) {
  409. q.tq.Offset(offset)
  410. }
  411. func (q query[T, P, R]) Unique(unique bool) {
  412. q.tq.Unique(unique)
  413. }
  414. func (q query[T, P, R]) Order(orders ...func(*sql.Selector)) {
  415. rs := make([]R, len(orders))
  416. for i := range orders {
  417. rs[i] = orders[i]
  418. }
  419. q.tq.Order(rs...)
  420. }
  421. func (q query[T, P, R]) WhereP(ps ...func(*sql.Selector)) {
  422. p := make([]P, len(ps))
  423. for i := range ps {
  424. p[i] = ps[i]
  425. }
  426. q.tq.Where(p...)
  427. }