Skip to content

Latest commit

 

History

History
executable file
·
25 lines (20 loc) · 1.67 KB

SearchRequest.md

File metadata and controls

executable file
·
25 lines (20 loc) · 1.67 KB

SearchRequest

Properties

Name Type Description Notes
table String The table to perform the search on
query Option<crate::models::SearchQuery> [optional]
join Option<Veccrate::models::Join> Join clause to combine search data from multiple tables [optional]
highlight Option<crate::models::Highlight> [optional]
limit Option<i32> Maximum number of results to return [optional]
knn Option<crate::models::KnnQuery> [optional]
aggs Option<::std::collections::HashMap<String, crate::models::Aggregation>> Defines aggregation settings for grouping results [optional]
expressions Option<::std::collections::HashMap<String, String>> Expressions to calculate additional values for the result [optional]
max_matches Option<i32> Maximum number of matches allowed in the result [optional]
offset Option<i32> Starting point for pagination of the result [optional]
options Option<serde_json::Value> Additional search options [optional]
profile Option<bool> Enable or disable profiling of the search request [optional]
sort Option<serde_json::Value> [optional]
_source Option<serde_json::Value> [optional]
track_scores Option<bool> Enable or disable result weight calculation used for sorting [optional]

[Back to Model list] [Back to API list] [Back to README]