entc/gen: copies interceptors on Clone (#3194)

This commit is contained in:
Pedro Henrique
2022-12-28 01:29:48 -03:00
committed by GitHub
parent c868f4a174
commit 8307c2eaba
136 changed files with 161 additions and 0 deletions

View File

@@ -278,6 +278,7 @@ func (cq *CardQuery) Clone() *CardQuery {
limit: cq.limit,
offset: cq.offset,
order: append([]OrderFunc{}, cq.order...),
inters: append([]Interceptor{}, cq.inters...),
predicates: append([]predicate.Card{}, cq.predicates...),
withOwner: cq.withOwner.Clone(),
// clone intermediate query.

View File

@@ -278,6 +278,7 @@ func (uq *UserQuery) Clone() *UserQuery {
limit: uq.limit,
offset: uq.offset,
order: append([]OrderFunc{}, uq.order...),
inters: append([]Interceptor{}, uq.inters...),
predicates: append([]predicate.User{}, uq.predicates...),
withCard: uq.withCard.Clone(),
// clone intermediate query.