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 39b21f9 commit 6bd9d49Copy full SHA for 6bd9d49
src/Nest/DSL/Query/RangeQueryDescriptor.cs
@@ -62,6 +62,16 @@ public RangeQueryDescriptor<T> FromExclusive()
62
this._FromInclusive = false;
63
return this;
64
}
65
+
66
+ /// <summary>
67
+ /// Boosts the range query by the specified boost factor
68
+ /// </summary>
69
+ /// <param name="boost">Boost factor</param>
70
+ public RangeQueryDescriptor<T> Boost(double boost)
71
+ {
72
+ this._Boost = boost;
73
+ return this;
74
+ }
75
76
77
#region int
0 commit comments