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

    Type Alias DeleteManyOptions

    Options for deleting multiple records from the index. Either ids or filter must be provided, but not both.

    type DeleteManyOptions = {
        filter?: object;
        ids?: RecordId[];
        namespace?: string;
    }
    Index
    filter?: object

    A metadata filter expression to determine which records to delete. Mutually exclusive with ids.

    ids?: RecordId[]

    A list of record ids to delete from the index. Mutually exclusive with filter.

    namespace?: string

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