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

    Interface FetchedDocument

    A fetched document containing its ID and field values.

    FetchedDocumentRecord

    interface FetchedDocument {
        _id: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index
    _id: string

    The unique identifier of the document.

    FetchedDocumentRecord