Pinecone TypeScript SDK - v8.1.0
    Preparing search index...

    Type Alias ListOptions

    type ListOptions = {
        limit?: number;
        namespace?: string;
        paginationToken?: string;
        prefix?: string;
    }
    Index
    limit?: number

    The maximum number of ids to return. If unspecified, the server returns up to 100 ids at a time, in sorted order (bitwise "C" collation).

    namespace?: string

    The namespace to list from. If not specified, uses the namespace configured on the Index.

    paginationToken?: string

    A token needed to fetch the next page of results. This token is returned in the response if additional results are available.

    prefix?: string

    The id prefix to match. If unspecified, an empty string prefix will be used with the effect of listing all ids in a namespace.