SearchRequest
@Serializable
Request body for POST /collections/{name}/points/query.
A request carries a query (what to do with the candidates), optional prefetch sub-requests (fetched first, then combined/reranked by query — the basis of hybrid search), or both.
Constructors
Link copied to clipboard
constructor(prefetch: List<Prefetch>? = null, query: QueryInterface? = null, using: String? = null, filter: Filter? = null, limit: Int? = null, offset: Int? = null, withPayload: WithPayload? = null, withVector: Boolean? = null, scoreThreshold: Double? = null, params: SearchParams? = null, lookupFrom: LookupLocation? = null)
Properties
Link copied to clipboard
Where to look up vectors for a query-by-id (another collection and optional vector name).
Link copied to clipboard
Link copied to clipboard
What to do with the candidates: nearest vector/id, fusion, order-by, sample, ...
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard