ent.go 19 KB

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