Type alias FindChildrenResults<DocumentType>

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

The results of a [[findChildren]] operation.

Type Parameters

Type declaration

  • items: DocumentType[]

    the items that were returned in this batch

  • Optional nextToken?: Key

    The pagination token. If this value is specified, it means there is more results for the query. Provide it to another call to findChildren to get the next set of results.

Generated using TypeDoc