(column: string, direction: 'ASC' | 'DESC' = 'ASC')
| 234 | |
| 235 | // Order by methods |
| 236 | orderBy(column: string, direction: 'ASC' | 'DESC' = 'ASC'): this { |
| 237 | if (this._skipNext) { |
| 238 | return this; |
| 239 | } |
| 240 | this._orderBy.push({ column, direction }); |
| 241 | return this; |
| 242 | } |
| 243 | |
| 244 | // Limit and offset |
| 245 | limit(limit?: number): this { |
no test coverage detected