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

    Interface UpdateDocumentRecord

    A partial update to a document, identified by _id. Any other fields set new values for those fields. Fields named in _remove_fields are removed from the document.

    UpdateDocumentRecord

    interface UpdateDocumentRecord {
        _id: string;
        _remove_fields?: string[];
        [key: string]: any;
    }

    Indexable

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

    The unique identifier of the document to update.

    UpdateDocumentRecord

    _remove_fields?: string[]

    A list of field names to delete from the document.

    UpdateDocumentRecord