You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the LessThanOrEqualTo comparison filter on an IndexContraint of a FieldStats indices request will create a low-level API request with a GreaterThanOrEqualTo comparison instead.
You can see this at line 79 of Nest/Search/FieldStats/IndexConstraint.cs
public IndexConstraintComparisonDescriptor LessThanOrEqualTo(string lte) => Assign(a => a.GreaterThanOrEqualTo = lte);