Vector
Methods related to CRUD operations within a collection.
count() [READ MORE]
This operation counts the number of entities that match the specified filtering expression.
delete() [READ MORE]
This operation deletes entities by their IDs or with a boolean expression.
get() [READ MORE]
This operation gets specific entities by their IDs.
hybridSearch() [READ MORE]
This operation conducts a hybrid search across multiple vector fields with an optional scalar filtering expression and returns the merged, reranked results.
insert() [READ MORE]
This operation inserts data into a specific collection.
query() [READ MORE]
This operation conducts a scalar filtering with a specified boolean expression.
search() [READ MORE]
This operation conducts a vector similarity search with an optional scalar filtering expression.
upsert() [READ MORE]
This operation inserts or updates data in a specific collection.
searchIterator() [READ MORE]
This operation conducts a vector similarity search iteratively and returns results in batches. Use this instead of a single `search()` call when you need to process large result sets incrementally or when the total result count exceeds what a single query can return.
queryIterator() [READ MORE]
This operation conducts a scalar filtering query iteratively and returns results in batches. Use this instead of a single `query()` call when you need to process large result sets incrementally or when the total result count exceeds what a single query can return.