Documentation / @zerotal/orm / index / KeysetPaginateResult
Interface: KeysetPaginateResult<T>
Defined in: packages/orm/src/db/types.ts:289
Result of QueryBuilder.keysetPaginate — opaque-cursor keyset pagination.
Type Parameters
T
T = Record<string, unknown>
Properties
data
data:
T[]
Defined in: packages/orm/src/db/types.ts:290
nextCursor
nextCursor:
string|null
Defined in: packages/orm/src/db/types.ts:295
Opaque base64 cursor pointing past the last item, or null on the final page.
Pass this directly to the next keysetPaginate({ cursor }) call.