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 700e053 commit f7f734cCopy full SHA for f7f734c
.code-samples.meilisearch.yaml
@@ -793,6 +793,13 @@ distinct_attribute_guide_distinct_parameter_1: |-
793
Distinct = "sku"
794
};
795
await client.Index("products").SearchAsync<Product>("white shirt", params);
796
+get_dictionary_1: |-
797
+ var indexDictionary = await client.Index("books").GetDictionaryAsync();
798
+update_dictionary_1: |-
799
+ var newDictionary = new string[] { "J. R. R.", "W. E. B." };
800
+ await client.Index("books").UpdateDictionaryAsync(newDictionary);
801
+reset_dictionary_1: |-
802
+ await client.Index("books").ResetDictionaryAsync();
803
facet_search_2: |-
804
var newFaceting = new Faceting
805
{
0 commit comments