SearchResult type
Arama sorgusu tarafından bulunan bir belgeyi ve ilişkili meta verileri içerir.
type SearchResult<TModel, TFields> = {
captions?: QueryCaptionResult[]
document: NarrowedModel<TModel, TFields>
highlights?: { [k in SelectFields<TModel>]?: string[] }
rerankerScore?: number
score: number
}