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 082660b commit c20849aCopy full SHA for c20849a
src/Nest/Mapping/Types/Specialized/Generic/GenericProperty.cs
@@ -174,6 +174,7 @@ public GenericPropertyDescriptor() : base(null) { }
174
[Obsolete("Deprecated. Will be removed in NEST 7.x")]
175
public GenericPropertyDescriptor<T> NotAnalyzed() => Index(FieldIndexOption.NotAnalyzed);
176
177
+ [Obsolete("Please use the overload that accepts bool?. Will be fixed in NEST 7.x")]
178
public GenericPropertyDescriptor<T> Index(FieldIndexOption index) => Assign(a => a.Index = index);
179
180
public GenericPropertyDescriptor<T> TermVector(TermVectorOption termVector) => Assign(a => a.TermVector = termVector);
0 commit comments