* Sets an OFFSET clause to skip a number of results. * * @example * ```ts * qb.select('*').limit(10).offset(20); // Results 21-30 * ```
(offset?: number)
| 2007 | * ``` |
| 2008 | */ |
| 2009 | offset(offset?: number): SelectQueryBuilder<Entity, RootAlias, Hint, Context, RawAliases, Fields, CTEs> { |
| 2010 | this.ensureNotFinalized(); |
| 2011 | this.#state.offset = offset; |
| 2012 | return this as SelectQueryBuilder<Entity, RootAlias, Hint, Context, RawAliases, Fields, CTEs>; |
| 2013 | } |
| 2014 | |
| 2015 | withSchema(schema?: string): this { |
| 2016 | this.ensureNotFinalized(); |
no test coverage detected