Add comments
This commit is contained in:
parent
bf32801917
commit
41537cd00c
|
@ -480,6 +480,11 @@ export class QueryBuilder<T> {
|
||||||
return await this.#execute()
|
return await this.#execute()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lucene queries do not support pagination and use bookmarks instead.
|
||||||
|
* For the given builder, walk through pages using bookmarks until the desired
|
||||||
|
* page has been met.
|
||||||
|
*/
|
||||||
async #skipPages(skip: number) {
|
async #skipPages(skip: number) {
|
||||||
// Lucene does not support pagination.
|
// Lucene does not support pagination.
|
||||||
// Handle pagination by finding the right bookmark
|
// Handle pagination by finding the right bookmark
|
||||||
|
|
Loading…
Reference in New Issue