Interface ImageSearchOptions

interface ImageSearchOptions {
    filterContentIds?: string[];
    hydrate?: boolean;
    limit?: number;
    minScore?: number;
}

Properties

filterContentIds?: string[]

Restrict hits to these content ids.

hydrate?: boolean

When true, each result carries its contentHolder entity.

limit?: number

1–100. Server default 20. Also the kNN k; there is no pagination.

minScore?: number

0–1. Server default 0.6, applied after kNN so fewer than limit may return.

Generated using TypeDoc