Package version:

Interface QueryResultDocumentInnerHit

Detailed scoring information for an individual element of a complex collection.

interface QueryResultDocumentInnerHit {
    ordinal?: number;
    vectors?: {
        [propertyName: string]: SingleVectorFieldResult;
    }[];
}

Properties

Properties

ordinal?: number

Position of this specific matching element within it's original collection. Position starts at 0. NOTE: This property will not be serialized. It can only be populated by the server.

vectors?: {
    [propertyName: string]: SingleVectorFieldResult;
}[]

Detailed scoring information for an individual element of a complex collection that matched a vector query. NOTE: This property will not be serialized. It can only be populated by the server.