ent.go 19 KB

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