Method RetrieveFromMetadataAsync
RetrieveFromMetadataAsync(string, MetadataCollection, bool, bool, CancellationToken)
Asynchronously retrieves vector entries from the specified collection that match the given metadata criteria.
Task<List<PointEntry>> RetrieveFromMetadataAsync(string collectionIdentifier, MetadataCollection metadata, bool getVector, bool getMetadata, CancellationToken cancellationToken = default)
Parameters
collectionIdentifier
stringThe name of the collection to search within.
metadata
MetadataCollectionA collection of metadata key-value pairs to filter the search results. Only entries that match these pairs are returned.
getVector
boolIf
true
, the vector data for each matching entry will be included in the returned PointEntry.getMetadata
boolIf
true
, the metadata for each matching entry will be included in the returned PointEntry.cancellationToken
CancellationTokenAn optional token that can be used to cancel the asynchronous retrieval operation.
Returns
- Task<List<PointEntry>>
A task representing the asynchronous retrieval operation. The task result is a list of PointEntry items. Each PointEntry may include vector data and/or metadata based on the parameters specified.