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
The default search operator becomes wildcard since #79. With that operator, search on numeric field fails: wildcard operator is not applicable on numeric.
This issue reverts default behavior introduced with #79:
Term search becomes again ~= and {"_field": field, "_value": value}
Wildcard search is available using ~=~ and {"_wildcard":{"_field": field, "_value": value}}
The text was updated successfully, but these errors were encountered:
The default search operator becomes wildcard since #79. With that operator, search on numeric field fails: wildcard operator is not applicable on numeric.
This issue reverts default behavior introduced with #79:
~=
and{"_field": field, "_value": value}
~=~
and{"_wildcard":{"_field": field, "_value": value}}
The text was updated successfully, but these errors were encountered: