Skip to content

Commit 74dc904

Browse files
authored
Merge pull request #960 from meilisearch/chore/remove-unused-code-samples
Remove unused code samples
2 parents 750ea50 + da5fe18 commit 74dc904

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

.code-samples.meilisearch.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -340,9 +340,6 @@ get_version_1: |-
340340
client.getVersion();
341341
distinct_attribute_guide_1: |-
342342
client.index("jackets").updateDistinctAttributeSettings("product_id");
343-
field_properties_guide_searchable_1: |-
344-
String[] attributes = {"title", "overview", "genres"}
345-
client.index("movies").updateSearchableAttributesSettings(attributes);
346343
field_properties_guide_displayed_1: |-
347344
String[] attributes = {"title", "overview", "genres", "release_date"}
348345
client.index("movies").updateDisplayedAttributesSettings(attributes);
@@ -358,9 +355,6 @@ filtering_guide_3: |-
358355
filtering_guide_nested_1: |-
359356
SearchRequest searchRequest = SearchRequest.builder().q("thriller").filter(new String[] {"rating.users >= 90"}).build();
360357
client.index("movie_ratings").search(searchRequest);
361-
search_parameter_guide_show_ranking_score_details_1: |-
362-
SearchRequest searchRequest = SearchRequest.builder().q("dragon").showRankingScoreDetails(true).build();
363-
client.index("movies").search(searchRequest);
364358
synonyms_guide_1: |-
365359
HashMap<String, String[]> synonyms = new HashMap<String, String[]>();
366360
synonyms.put("great", new String[] {"fantastic"});
@@ -626,8 +620,6 @@ export_post_1: |-
626620
client.export(request);
627621
compact_index_1: |-
628622
client.index("INDEX_NAME").compact();
629-
rename_an_index_1: |-
630-
client.updateIndex("indexA", null, "indexB");
631623
webhooks_get_1: |-
632624
client.getWebhooks();
633625
webhooks_get_single_1: |-

0 commit comments

Comments
 (0)