1
0
Fork 0
mirror of synced 2024-09-08 13:41:09 +12:00

Bookmark optional

This commit is contained in:
adrinr 2023-03-21 11:20:17 +00:00
parent 10e465e07d
commit 771e3b8862
2 changed files with 1 additions and 2 deletions

View file

@ -555,7 +555,6 @@ async function runQuery<T>(
let output: SearchResponse<T> = {
rows: [],
totalRows: 0,
}
if (json.rows != null && json.rows.length > 0) {

View file

@ -22,6 +22,6 @@ export interface PaginationRequest extends BasicPaginationRequest {
}
export interface PaginationResponse {
bookmark: string
bookmark: string | undefined
hasNextPage: boolean
}