Type Alias SearchRequestGET

SearchRequestGET: Pagination & Query & Omit<Highlight, "attributesToHighlight"> & Omit<Crop, "attributesToCrop"> & {
    attributesToCrop?: string;
    attributesToHighlight?: string;
    attributesToRetrieve?: string;
    attributesToSearchOn?: string | null;
    distinct?: string;
    facets?: string;
    filter?: string;
    hybridEmbedder?: string;
    hybridSemanticRatio?: number;
    locales?: Locale[];
    rankingScoreThreshold?: number;
    retrieveVectors?: boolean;
    showMatchesPosition?: boolean;
    sort?: string;
    vector?: string | null;
}