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 2b9f56f commit aa181f8Copy full SHA for aa181f8
src/Nest/DSL/Filter/FilterDescriptor.cs
@@ -57,6 +57,12 @@ public FilterContainer Conditionless(Action<ConditionlessFilterDescriptor<T>> se
57
return (filter.FilterDescriptor == null || filter.FilterDescriptor.IsConditionless) ? filter._Fallback : filter.FilterDescriptor;
58
}
59
60
+ /// <summary>
61
+ /// Insert raw filter json at this position of the filter
62
+ /// <para>Be sure to start your json with '{'</para>
63
+ /// </summary>
64
+ /// <param name="rawJson"></param>
65
+ /// <returns></returns>
66
public FilterContainer Raw(string rawJson)
67
{
68
var f = new FilterDescriptor<T>();
0 commit comments