Interface OffsetPaginationOptions

interface OffsetPaginationOptions {
    limit?: number;
    needCountTotal: boolean;
    offset?: number;
}

Properties

limit?: number
needCountTotal: boolean

If true, total count will be calculated by additional SELECT COUNT.

true
offset?: number