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 e80b958 commit 174c7f6Copy full SHA for 174c7f6
src/Nest/Domain/Mapping/Descriptors/StringMappingDescriptor.cs
@@ -61,6 +61,11 @@ public StringMappingDescriptor<T> IndexOptions(IndexOptions indexOptions)
61
this._Mapping.IndexOptions = indexOptions;
62
return this;
63
}
64
+ public StringMappingDescriptor<T> Analyzer(string analyzer)
65
+ {
66
+ this._Mapping.Analyzer = analyzer;
67
+ return this;
68
+ }
69
public StringMappingDescriptor<T> IndexAnalyzer(string indexAnalyzer)
70
{
71
this._Mapping.IndexAnalyzer = indexAnalyzer;
0 commit comments