(orderBy: unknown)
| 1710 | }, |
| 1711 | ): SelectQueryBuilder<Entity, RootAlias, Hint, Context, RawAliases, Fields, CTEs>; |
| 1712 | orderBy(orderBy: unknown): SelectQueryBuilder<Entity, RootAlias, Hint, Context, RawAliases, Fields, CTEs> { |
| 1713 | return this.processOrderBy(orderBy as QueryOrderMap<Entity>, true); |
| 1714 | } |
| 1715 | |
| 1716 | /** |
| 1717 | * Adds additional ORDER BY clause without replacing existing order. |
nothing calls this directly
no test coverage detected