Type alias FindResults<DocumentType>

FindResults<DocumentType>: {
    items: DocumentType[];
    nextToken?: Key;
}

The results of a [[find]] operation.

Type Parameters

Type declaration

  • items: DocumentType[]

    The items in this batch of results

  • Optional nextToken?: Key

    The pagination token. This value is specified when there are more results to fetch; pass it to another [[find]] call to get the next batch. It will be undefined when there is no more results.

Generated using TypeDoc