Type alias PineconeDeleteParams
 
PineconeDeleteParams: { 
    deleteAll?: boolean; 
    filter?: object; 
    ids?: string[]; 
    namespace?: string; 
}
Type declaration
- 
OptionaldeleteAll?: boolean
- 
Optionalfilter?: object
- 
Optionalids?: string[]
- 
Optionalnamespace?: string
 
 
⚠️ Deprecated ⚠️
This feature is deprecated and will be removed in the future.
It is not recommended for use.
Install and import from @langchain/pinecone instead. Type that defines the parameters for the delete operation in the PineconeStore class. It includes ids, filter, deleteAll flag, and namespace.