Skip to content
1 min read · 111 words

Interface: DeletePlan

Defined in: src/batteries/vector/plan.ts:62

A compiled delete operation, consumed by an adapter's executeDelete.

Properties

PropertyTypeDescriptionDefined in
collectionstringCollection to delete from.src/batteries/vector/plan.ts:64
consistency?VectorConsistencyPer-operation read-after-write override from .consistency(); absent = use store/adapter default.src/batteries/vector/plan.ts:70
filter?VectorFilterFilter selecting the records to delete when ids is not used.src/batteries/vector/plan.ts:68
ids?string[]Ids to delete (the fast path); mutually informative with filter.src/batteries/vector/plan.ts:66