Interface PreviewDocumentSearchMatch

A document match returned from a search operation, including the document ID, similarity score, and selected fields.

DocumentSearchMatch

interface PreviewDocumentSearchMatch {
    _id: string;
    _score: number;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

Properties

_id: string

The unique identifier of the matched document.

DocumentSearchMatch

_score: number

The similarity score of the matched document.

DocumentSearchMatch