Pinecone TypeScript SDK - v9.0.0
    Preparing search index...

    Interface ListDocumentsOptions

    The request for the list_documents operation.

    ListDocumentsRequest

    interface ListDocumentsOptions {
        limit?: number;
        paginationToken?: string;
        prefix?: string;
    }
    Index
    limit?: number

    The maximum number of documents to return per page. Defaults to 100.

    ListDocumentsRequest

    paginationToken?: string

    A pagination token from a previous list response, used to retrieve the next page of results.

    ListDocumentsRequest

    prefix?: string

    A prefix to filter document IDs. Only documents whose IDs begin with this prefix are returned.

    ListDocumentsRequest