Share via


QdrantVectorDbClient.DeleteVectorsByIdAsync Method

Definition

Delete vectors by their unique Qdrant IDs.

public System.Threading.Tasks.Task DeleteVectorsByIdAsync (string collectionName, System.Collections.Generic.IEnumerable<string> pointIds, System.Threading.CancellationToken cancellationToken = default);
abstract member DeleteVectorsByIdAsync : string * seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.DeleteVectorsByIdAsync : string * seq<string> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function DeleteVectorsByIdAsync (collectionName As String, pointIds As IEnumerable(Of String), Optional cancellationToken As CancellationToken = Nothing) As Task

Parameters

collectionName
String

The name assigned to a collection of vectors.

pointIds
IEnumerable<String>

The unique IDs used to index Qdrant vector entries.

cancellationToken
CancellationToken

The CancellationToken to monitor for cancellation requests. The default is None.

Returns

Implements

Applies to