ent.go 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676
  1. // Code generated by ent, DO NOT EDIT.
  2. package ent
  3. import (
  4. "context"
  5. "errors"
  6. "fmt"
  7. "reflect"
  8. "sync"
  9. "wechat-api/ent/agent"
  10. "wechat-api/ent/agentbase"
  11. "wechat-api/ent/aliyunavatar"
  12. "wechat-api/ent/allocagent"
  13. "wechat-api/ent/batchmsg"
  14. "wechat-api/ent/category"
  15. "wechat-api/ent/chatrecords"
  16. "wechat-api/ent/chatsession"
  17. "wechat-api/ent/contact"
  18. "wechat-api/ent/employee"
  19. "wechat-api/ent/employeeconfig"
  20. "wechat-api/ent/label"
  21. "wechat-api/ent/labelrelationship"
  22. "wechat-api/ent/labeltagging"
  23. "wechat-api/ent/message"
  24. "wechat-api/ent/messagerecords"
  25. "wechat-api/ent/msg"
  26. "wechat-api/ent/server"
  27. "wechat-api/ent/sopnode"
  28. "wechat-api/ent/sopstage"
  29. "wechat-api/ent/soptask"
  30. "wechat-api/ent/token"
  31. "wechat-api/ent/tutorial"
  32. "wechat-api/ent/usagedetail"
  33. "wechat-api/ent/usagestatisticday"
  34. "wechat-api/ent/usagestatistichour"
  35. "wechat-api/ent/usagestatisticmonth"
  36. "wechat-api/ent/usagetotal"
  37. "wechat-api/ent/workexperience"
  38. "wechat-api/ent/wpchatroom"
  39. "wechat-api/ent/wpchatroommember"
  40. "wechat-api/ent/wx"
  41. "wechat-api/ent/wxcard"
  42. "wechat-api/ent/wxcarduser"
  43. "wechat-api/ent/wxcardvisit"
  44. "entgo.io/ent"
  45. "entgo.io/ent/dialect/sql"
  46. "entgo.io/ent/dialect/sql/sqlgraph"
  47. )
  48. // ent aliases to avoid import conflicts in user's code.
  49. type (
  50. Op = ent.Op
  51. Hook = ent.Hook
  52. Value = ent.Value
  53. Query = ent.Query
  54. QueryContext = ent.QueryContext
  55. Querier = ent.Querier
  56. QuerierFunc = ent.QuerierFunc
  57. Interceptor = ent.Interceptor
  58. InterceptFunc = ent.InterceptFunc
  59. Traverser = ent.Traverser
  60. TraverseFunc = ent.TraverseFunc
  61. Policy = ent.Policy
  62. Mutator = ent.Mutator
  63. Mutation = ent.Mutation
  64. MutateFunc = ent.MutateFunc
  65. )
  66. type clientCtxKey struct{}
  67. // FromContext returns a Client stored inside a context, or nil if there isn't one.
  68. func FromContext(ctx context.Context) *Client {
  69. c, _ := ctx.Value(clientCtxKey{}).(*Client)
  70. return c
  71. }
  72. // NewContext returns a new context with the given Client attached.
  73. func NewContext(parent context.Context, c *Client) context.Context {
  74. return context.WithValue(parent, clientCtxKey{}, c)
  75. }
  76. type txCtxKey struct{}
  77. // TxFromContext returns a Tx stored inside a context, or nil if there isn't one.
  78. func TxFromContext(ctx context.Context) *Tx {
  79. tx, _ := ctx.Value(txCtxKey{}).(*Tx)
  80. return tx
  81. }
  82. // NewTxContext returns a new context with the given Tx attached.
  83. func NewTxContext(parent context.Context, tx *Tx) context.Context {
  84. return context.WithValue(parent, txCtxKey{}, tx)
  85. }
  86. // OrderFunc applies an ordering on the sql selector.
  87. // Deprecated: Use Asc/Desc functions or the package builders instead.
  88. type OrderFunc func(*sql.Selector)
  89. var (
  90. initCheck sync.Once
  91. columnCheck sql.ColumnCheck
  92. )
  93. // columnChecker checks if the column exists in the given table.
  94. func checkColumn(table, column string) error {
  95. initCheck.Do(func() {
  96. columnCheck = sql.NewColumnCheck(map[string]func(string) bool{
  97. agent.Table: agent.ValidColumn,
  98. agentbase.Table: agentbase.ValidColumn,
  99. aliyunavatar.Table: aliyunavatar.ValidColumn,
  100. allocagent.Table: allocagent.ValidColumn,
  101. batchmsg.Table: batchmsg.ValidColumn,
  102. category.Table: category.ValidColumn,
  103. chatrecords.Table: chatrecords.ValidColumn,
  104. chatsession.Table: chatsession.ValidColumn,
  105. contact.Table: contact.ValidColumn,
  106. employee.Table: employee.ValidColumn,
  107. employeeconfig.Table: employeeconfig.ValidColumn,
  108. label.Table: label.ValidColumn,
  109. labelrelationship.Table: labelrelationship.ValidColumn,
  110. labeltagging.Table: labeltagging.ValidColumn,
  111. message.Table: message.ValidColumn,
  112. messagerecords.Table: messagerecords.ValidColumn,
  113. msg.Table: msg.ValidColumn,
  114. server.Table: server.ValidColumn,
  115. sopnode.Table: sopnode.ValidColumn,
  116. sopstage.Table: sopstage.ValidColumn,
  117. soptask.Table: soptask.ValidColumn,
  118. token.Table: token.ValidColumn,
  119. tutorial.Table: tutorial.ValidColumn,
  120. usagedetail.Table: usagedetail.ValidColumn,
  121. usagestatisticday.Table: usagestatisticday.ValidColumn,
  122. usagestatistichour.Table: usagestatistichour.ValidColumn,
  123. usagestatisticmonth.Table: usagestatisticmonth.ValidColumn,
  124. usagetotal.Table: usagetotal.ValidColumn,
  125. workexperience.Table: workexperience.ValidColumn,
  126. wpchatroom.Table: wpchatroom.ValidColumn,
  127. wpchatroommember.Table: wpchatroommember.ValidColumn,
  128. wx.Table: wx.ValidColumn,
  129. wxcard.Table: wxcard.ValidColumn,
  130. wxcarduser.Table: wxcarduser.ValidColumn,
  131. wxcardvisit.Table: wxcardvisit.ValidColumn,
  132. })
  133. })
  134. return columnCheck(table, column)
  135. }
  136. // Asc applies the given fields in ASC order.
  137. func Asc(fields ...string) func(*sql.Selector) {
  138. return func(s *sql.Selector) {
  139. for _, f := range fields {
  140. if err := checkColumn(s.TableName(), f); err != nil {
  141. s.AddError(&ValidationError{Name: f, err: fmt.Errorf("ent: %w", err)})
  142. }
  143. s.OrderBy(sql.Asc(s.C(f)))
  144. }
  145. }
  146. }
  147. // Desc applies the given fields in DESC order.
  148. func Desc(fields ...string) func(*sql.Selector) {
  149. return func(s *sql.Selector) {
  150. for _, f := range fields {
  151. if err := checkColumn(s.TableName(), f); err != nil {
  152. s.AddError(&ValidationError{Name: f, err: fmt.Errorf("ent: %w", err)})
  153. }
  154. s.OrderBy(sql.Desc(s.C(f)))
  155. }
  156. }
  157. }
  158. // AggregateFunc applies an aggregation step on the group-by traversal/selector.
  159. type AggregateFunc func(*sql.Selector) string
  160. // As is a pseudo aggregation function for renaming another other functions with custom names. For example:
  161. //
  162. // GroupBy(field1, field2).
  163. // Aggregate(ent.As(ent.Sum(field1), "sum_field1"), (ent.As(ent.Sum(field2), "sum_field2")).
  164. // Scan(ctx, &v)
  165. func As(fn AggregateFunc, end string) AggregateFunc {
  166. return func(s *sql.Selector) string {
  167. return sql.As(fn(s), end)
  168. }
  169. }
  170. // Count applies the "count" aggregation function on each group.
  171. func Count() AggregateFunc {
  172. return func(s *sql.Selector) string {
  173. return sql.Count("*")
  174. }
  175. }
  176. // Max applies the "max" aggregation function on the given field of each group.
  177. func Max(field string) AggregateFunc {
  178. return func(s *sql.Selector) string {
  179. if err := checkColumn(s.TableName(), field); err != nil {
  180. s.AddError(&ValidationError{Name: field, err: fmt.Errorf("ent: %w", err)})
  181. return ""
  182. }
  183. return sql.Max(s.C(field))
  184. }
  185. }
  186. // Mean applies the "mean" aggregation function on the given field of each group.
  187. func Mean(field string) AggregateFunc {
  188. return func(s *sql.Selector) string {
  189. if err := checkColumn(s.TableName(), field); err != nil {
  190. s.AddError(&ValidationError{Name: field, err: fmt.Errorf("ent: %w", err)})
  191. return ""
  192. }
  193. return sql.Avg(s.C(field))
  194. }
  195. }
  196. // Min applies the "min" aggregation function on the given field of each group.
  197. func Min(field string) AggregateFunc {
  198. return func(s *sql.Selector) string {
  199. if err := checkColumn(s.TableName(), field); err != nil {
  200. s.AddError(&ValidationError{Name: field, err: fmt.Errorf("ent: %w", err)})
  201. return ""
  202. }
  203. return sql.Min(s.C(field))
  204. }
  205. }
  206. // Sum applies the "sum" aggregation function on the given field of each group.
  207. func Sum(field string) AggregateFunc {
  208. return func(s *sql.Selector) string {
  209. if err := checkColumn(s.TableName(), field); err != nil {
  210. s.AddError(&ValidationError{Name: field, err: fmt.Errorf("ent: %w", err)})
  211. return ""
  212. }
  213. return sql.Sum(s.C(field))
  214. }
  215. }
  216. // ValidationError returns when validating a field or edge fails.
  217. type ValidationError struct {
  218. Name string // Field or edge name.
  219. err error
  220. }
  221. // Error implements the error interface.
  222. func (e *ValidationError) Error() string {
  223. return e.err.Error()
  224. }
  225. // Unwrap implements the errors.Wrapper interface.
  226. func (e *ValidationError) Unwrap() error {
  227. return e.err
  228. }
  229. // IsValidationError returns a boolean indicating whether the error is a validation error.
  230. func IsValidationError(err error) bool {
  231. if err == nil {
  232. return false
  233. }
  234. var e *ValidationError
  235. return errors.As(err, &e)
  236. }
  237. // NotFoundError returns when trying to fetch a specific entity and it was not found in the database.
  238. type NotFoundError struct {
  239. label string
  240. }
  241. // Error implements the error interface.
  242. func (e *NotFoundError) Error() string {
  243. return "ent: " + e.label + " not found"
  244. }
  245. // IsNotFound returns a boolean indicating whether the error is a not found error.
  246. func IsNotFound(err error) bool {
  247. if err == nil {
  248. return false
  249. }
  250. var e *NotFoundError
  251. return errors.As(err, &e)
  252. }
  253. // MaskNotFound masks not found error.
  254. func MaskNotFound(err error) error {
  255. if IsNotFound(err) {
  256. return nil
  257. }
  258. return err
  259. }
  260. // NotSingularError returns when trying to fetch a singular entity and more then one was found in the database.
  261. type NotSingularError struct {
  262. label string
  263. }
  264. // Error implements the error interface.
  265. func (e *NotSingularError) Error() string {
  266. return "ent: " + e.label + " not singular"
  267. }
  268. // IsNotSingular returns a boolean indicating whether the error is a not singular error.
  269. func IsNotSingular(err error) bool {
  270. if err == nil {
  271. return false
  272. }
  273. var e *NotSingularError
  274. return errors.As(err, &e)
  275. }
  276. // NotLoadedError returns when trying to get a node that was not loaded by the query.
  277. type NotLoadedError struct {
  278. edge string
  279. }
  280. // Error implements the error interface.
  281. func (e *NotLoadedError) Error() string {
  282. return "ent: " + e.edge + " edge was not loaded"
  283. }
  284. // IsNotLoaded returns a boolean indicating whether the error is a not loaded error.
  285. func IsNotLoaded(err error) bool {
  286. if err == nil {
  287. return false
  288. }
  289. var e *NotLoadedError
  290. return errors.As(err, &e)
  291. }
  292. // ConstraintError returns when trying to create/update one or more entities and
  293. // one or more of their constraints failed. For example, violation of edge or
  294. // field uniqueness.
  295. type ConstraintError struct {
  296. msg string
  297. wrap error
  298. }
  299. // Error implements the error interface.
  300. func (e ConstraintError) Error() string {
  301. return "ent: constraint failed: " + e.msg
  302. }
  303. // Unwrap implements the errors.Wrapper interface.
  304. func (e *ConstraintError) Unwrap() error {
  305. return e.wrap
  306. }
  307. // IsConstraintError returns a boolean indicating whether the error is a constraint failure.
  308. func IsConstraintError(err error) bool {
  309. if err == nil {
  310. return false
  311. }
  312. var e *ConstraintError
  313. return errors.As(err, &e)
  314. }
  315. // selector embedded by the different Select/GroupBy builders.
  316. type selector struct {
  317. label string
  318. flds *[]string
  319. fns []AggregateFunc
  320. scan func(context.Context, any) error
  321. }
  322. // ScanX is like Scan, but panics if an error occurs.
  323. func (s *selector) ScanX(ctx context.Context, v any) {
  324. if err := s.scan(ctx, v); err != nil {
  325. panic(err)
  326. }
  327. }
  328. // Strings returns list of strings from a selector. It is only allowed when selecting one field.
  329. func (s *selector) Strings(ctx context.Context) ([]string, error) {
  330. if len(*s.flds) > 1 {
  331. return nil, errors.New("ent: Strings is not achievable when selecting more than 1 field")
  332. }
  333. var v []string
  334. if err := s.scan(ctx, &v); err != nil {
  335. return nil, err
  336. }
  337. return v, nil
  338. }
  339. // StringsX is like Strings, but panics if an error occurs.
  340. func (s *selector) StringsX(ctx context.Context) []string {
  341. v, err := s.Strings(ctx)
  342. if err != nil {
  343. panic(err)
  344. }
  345. return v
  346. }
  347. // String returns a single string from a selector. It is only allowed when selecting one field.
  348. func (s *selector) String(ctx context.Context) (_ string, err error) {
  349. var v []string
  350. if v, err = s.Strings(ctx); err != nil {
  351. return
  352. }
  353. switch len(v) {
  354. case 1:
  355. return v[0], nil
  356. case 0:
  357. err = &NotFoundError{s.label}
  358. default:
  359. err = fmt.Errorf("ent: Strings returned %d results when one was expected", len(v))
  360. }
  361. return
  362. }
  363. // StringX is like String, but panics if an error occurs.
  364. func (s *selector) StringX(ctx context.Context) string {
  365. v, err := s.String(ctx)
  366. if err != nil {
  367. panic(err)
  368. }
  369. return v
  370. }
  371. // Ints returns list of ints from a selector. It is only allowed when selecting one field.
  372. func (s *selector) Ints(ctx context.Context) ([]int, error) {
  373. if len(*s.flds) > 1 {
  374. return nil, errors.New("ent: Ints is not achievable when selecting more than 1 field")
  375. }
  376. var v []int
  377. if err := s.scan(ctx, &v); err != nil {
  378. return nil, err
  379. }
  380. return v, nil
  381. }
  382. // IntsX is like Ints, but panics if an error occurs.
  383. func (s *selector) IntsX(ctx context.Context) []int {
  384. v, err := s.Ints(ctx)
  385. if err != nil {
  386. panic(err)
  387. }
  388. return v
  389. }
  390. // Int returns a single int from a selector. It is only allowed when selecting one field.
  391. func (s *selector) Int(ctx context.Context) (_ int, err error) {
  392. var v []int
  393. if v, err = s.Ints(ctx); err != nil {
  394. return
  395. }
  396. switch len(v) {
  397. case 1:
  398. return v[0], nil
  399. case 0:
  400. err = &NotFoundError{s.label}
  401. default:
  402. err = fmt.Errorf("ent: Ints returned %d results when one was expected", len(v))
  403. }
  404. return
  405. }
  406. // IntX is like Int, but panics if an error occurs.
  407. func (s *selector) IntX(ctx context.Context) int {
  408. v, err := s.Int(ctx)
  409. if err != nil {
  410. panic(err)
  411. }
  412. return v
  413. }
  414. // Float64s returns list of float64s from a selector. It is only allowed when selecting one field.
  415. func (s *selector) Float64s(ctx context.Context) ([]float64, error) {
  416. if len(*s.flds) > 1 {
  417. return nil, errors.New("ent: Float64s is not achievable when selecting more than 1 field")
  418. }
  419. var v []float64
  420. if err := s.scan(ctx, &v); err != nil {
  421. return nil, err
  422. }
  423. return v, nil
  424. }
  425. // Float64sX is like Float64s, but panics if an error occurs.
  426. func (s *selector) Float64sX(ctx context.Context) []float64 {
  427. v, err := s.Float64s(ctx)
  428. if err != nil {
  429. panic(err)
  430. }
  431. return v
  432. }
  433. // Float64 returns a single float64 from a selector. It is only allowed when selecting one field.
  434. func (s *selector) Float64(ctx context.Context) (_ float64, err error) {
  435. var v []float64
  436. if v, err = s.Float64s(ctx); err != nil {
  437. return
  438. }
  439. switch len(v) {
  440. case 1:
  441. return v[0], nil
  442. case 0:
  443. err = &NotFoundError{s.label}
  444. default:
  445. err = fmt.Errorf("ent: Float64s returned %d results when one was expected", len(v))
  446. }
  447. return
  448. }
  449. // Float64X is like Float64, but panics if an error occurs.
  450. func (s *selector) Float64X(ctx context.Context) float64 {
  451. v, err := s.Float64(ctx)
  452. if err != nil {
  453. panic(err)
  454. }
  455. return v
  456. }
  457. // Bools returns list of bools from a selector. It is only allowed when selecting one field.
  458. func (s *selector) Bools(ctx context.Context) ([]bool, error) {
  459. if len(*s.flds) > 1 {
  460. return nil, errors.New("ent: Bools is not achievable when selecting more than 1 field")
  461. }
  462. var v []bool
  463. if err := s.scan(ctx, &v); err != nil {
  464. return nil, err
  465. }
  466. return v, nil
  467. }
  468. // BoolsX is like Bools, but panics if an error occurs.
  469. func (s *selector) BoolsX(ctx context.Context) []bool {
  470. v, err := s.Bools(ctx)
  471. if err != nil {
  472. panic(err)
  473. }
  474. return v
  475. }
  476. // Bool returns a single bool from a selector. It is only allowed when selecting one field.
  477. func (s *selector) Bool(ctx context.Context) (_ bool, err error) {
  478. var v []bool
  479. if v, err = s.Bools(ctx); err != nil {
  480. return
  481. }
  482. switch len(v) {
  483. case 1:
  484. return v[0], nil
  485. case 0:
  486. err = &NotFoundError{s.label}
  487. default:
  488. err = fmt.Errorf("ent: Bools returned %d results when one was expected", len(v))
  489. }
  490. return
  491. }
  492. // BoolX is like Bool, but panics if an error occurs.
  493. func (s *selector) BoolX(ctx context.Context) bool {
  494. v, err := s.Bool(ctx)
  495. if err != nil {
  496. panic(err)
  497. }
  498. return v
  499. }
  500. // withHooks invokes the builder operation with the given hooks, if any.
  501. func withHooks[V Value, M any, PM interface {
  502. *M
  503. Mutation
  504. }](ctx context.Context, exec func(context.Context) (V, error), mutation PM, hooks []Hook) (value V, err error) {
  505. if len(hooks) == 0 {
  506. return exec(ctx)
  507. }
  508. var mut Mutator = MutateFunc(func(ctx context.Context, m Mutation) (Value, error) {
  509. mutationT, ok := any(m).(PM)
  510. if !ok {
  511. return nil, fmt.Errorf("unexpected mutation type %T", m)
  512. }
  513. // Set the mutation to the builder.
  514. *mutation = *mutationT
  515. return exec(ctx)
  516. })
  517. for i := len(hooks) - 1; i >= 0; i-- {
  518. if hooks[i] == nil {
  519. return value, fmt.Errorf("ent: uninitialized hook (forgotten import ent/runtime?)")
  520. }
  521. mut = hooks[i](mut)
  522. }
  523. v, err := mut.Mutate(ctx, mutation)
  524. if err != nil {
  525. return value, err
  526. }
  527. nv, ok := v.(V)
  528. if !ok {
  529. return value, fmt.Errorf("unexpected node type %T returned from %T", v, mutation)
  530. }
  531. return nv, nil
  532. }
  533. // setContextOp returns a new context with the given QueryContext attached (including its op) in case it does not exist.
  534. func setContextOp(ctx context.Context, qc *QueryContext, op string) context.Context {
  535. if ent.QueryFromContext(ctx) == nil {
  536. qc.Op = op
  537. ctx = ent.NewQueryContext(ctx, qc)
  538. }
  539. return ctx
  540. }
  541. func querierAll[V Value, Q interface {
  542. sqlAll(context.Context, ...queryHook) (V, error)
  543. }]() Querier {
  544. return QuerierFunc(func(ctx context.Context, q Query) (Value, error) {
  545. query, ok := q.(Q)
  546. if !ok {
  547. return nil, fmt.Errorf("unexpected query type %T", q)
  548. }
  549. return query.sqlAll(ctx)
  550. })
  551. }
  552. func querierCount[Q interface {
  553. sqlCount(context.Context) (int, error)
  554. }]() Querier {
  555. return QuerierFunc(func(ctx context.Context, q Query) (Value, error) {
  556. query, ok := q.(Q)
  557. if !ok {
  558. return nil, fmt.Errorf("unexpected query type %T", q)
  559. }
  560. return query.sqlCount(ctx)
  561. })
  562. }
  563. func withInterceptors[V Value](ctx context.Context, q Query, qr Querier, inters []Interceptor) (v V, err error) {
  564. for i := len(inters) - 1; i >= 0; i-- {
  565. qr = inters[i].Intercept(qr)
  566. }
  567. rv, err := qr.Query(ctx, q)
  568. if err != nil {
  569. return v, err
  570. }
  571. vt, ok := rv.(V)
  572. if !ok {
  573. return v, fmt.Errorf("unexpected type %T returned from %T. expected type: %T", vt, q, v)
  574. }
  575. return vt, nil
  576. }
  577. func scanWithInterceptors[Q1 ent.Query, Q2 interface {
  578. sqlScan(context.Context, Q1, any) error
  579. }](ctx context.Context, rootQuery Q1, selectOrGroup Q2, inters []Interceptor, v any) error {
  580. rv := reflect.ValueOf(v)
  581. var qr Querier = QuerierFunc(func(ctx context.Context, q Query) (Value, error) {
  582. query, ok := q.(Q1)
  583. if !ok {
  584. return nil, fmt.Errorf("unexpected query type %T", q)
  585. }
  586. if err := selectOrGroup.sqlScan(ctx, query, v); err != nil {
  587. return nil, err
  588. }
  589. if k := rv.Kind(); k == reflect.Pointer && rv.Elem().CanInterface() {
  590. return rv.Elem().Interface(), nil
  591. }
  592. return v, nil
  593. })
  594. for i := len(inters) - 1; i >= 0; i-- {
  595. qr = inters[i].Intercept(qr)
  596. }
  597. vv, err := qr.Query(ctx, rootQuery)
  598. if err != nil {
  599. return err
  600. }
  601. switch rv2 := reflect.ValueOf(vv); {
  602. case rv.IsNil(), rv2.IsNil(), rv.Kind() != reflect.Pointer:
  603. case rv.Type() == rv2.Type():
  604. rv.Elem().Set(rv2.Elem())
  605. case rv.Elem().Type() == rv2.Type():
  606. rv.Elem().Set(rv2)
  607. }
  608. return nil
  609. }
  610. // queryHook describes an internal hook for the different sqlAll methods.
  611. type queryHook func(context.Context, *sqlgraph.QuerySpec)