delete

abstract suspend fun delete(name: String, ids: List<PointId>, wait: Boolean = false)

Delete points by id.

Parameters

wait

if true, return only once the change is applied.

Throws

if the collection does not exist.


abstract suspend fun delete(name: String, wait: Boolean = false, filter: FilterBuilder.() -> Unit)

Delete every point matching the given filter.

qdrant.delete("docs") { must { "lang" eq "en" } }