We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d782909 commit fc6f80aCopy full SHA for fc6f80a
.code-samples.meilisearch.yaml
@@ -839,6 +839,15 @@ search_parameter_guide_show_ranking_score_1: |-
839
.execute()
840
.await
841
.unwrap();
842
+search_parameter_guide_show_ranking_score_details_1: |-
843
+ let results: SearchResults<Movie> = client
844
+ .index("movies")
845
+ .search()
846
+ .with_query("dragon")
847
+ .with_show_ranking_score_details(true)
848
+ .execute()
849
+ .await
850
+ .unwrap();
851
search_parameter_guide_matching_strategy_1: |-
852
let results: SearchResults<Movie> = client
853
.index("movies")
0 commit comments