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>
documentDebugInfo?: DocumentDebugInfo
highlights?: { [k in SelectFields<TModel>]?: string[] }
rerankerBoostedScore?: number
rerankerScore?: number
score: number
}