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

    Interface DeleteDocumentsResponse

    The response for the delete_documents operation.

    DeleteDocumentsResponse

    interface DeleteDocumentsResponse {
        matchedRecords?: number;
    }
    Index
    matchedRecords?: number

    The number of documents that matched filter when the delete was accepted. Only returned for a filtered delete, and omitted when the count could not be read in time; 0 means the filter matched no documents. The delete is applied asynchronously, so this is a point-in-time count rather than a guarantee of the number of documents ultimately deleted.

    DeleteDocumentsResponse