Skip to main content
Version: 8.9 (unreleased)

Type Alias: SearchQueryPageResponse

type SearchQueryPageResponse = object;

Defined in: gen/types.gen.ts:6470

Pagination information about the search results.

Properties

endCursor?

optional endCursor: EndCursor;

Defined in: gen/types.gen.ts:6488

The cursor value for getting the next page of results. Use this in the after field of an ensuing request.


hasMoreTotalItems?

optional hasMoreTotalItems: boolean;

Defined in: gen/types.gen.ts:6480

Indicates whether there are more items matching the criteria beyond the returned items. This is useful for determining if additional requests are needed to retrieve all results.


startCursor?

optional startCursor: StartCursor;

Defined in: gen/types.gen.ts:6484

The cursor value for getting the previous page of results. Use this in the before field of an ensuing request.


totalItems

totalItems: number;

Defined in: gen/types.gen.ts:6474

Total items matching the criteria.