Skip to content

Latest commit

 

History

History
44 lines (25 loc) · 919 Bytes

ListItemsResult.md

File metadata and controls

44 lines (25 loc) · 919 Bytes

@letsgo/db / ListItemsResult

Interface: ListItemsResult<T>

The result of a list operation.

Type parameters

Name Type
T extends DBItem

Table of contents

Properties

Properties

items

items: T[]

The list of items matching the query.

Defined in

index.ts:101


nextToken

Optional nextToken: string

Continuation token for paginated results. If present, the client should pass this token to the next call to using ListItemsOptions.nextToken to retrieve the next page of results.

Defined in

index.ts:107