A record whose vector values are similar to the provided search query.

Hit

interface Hit {
    _id: string;
    _score: number;
    fields: object;
}

Properties

Properties

_id: string

The record id of the search hit.

Hit

_score: number

The similarity score of the returned record.

Hit

fields: object

The selected record fields associated with the search hit.

Hit