We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, if a default index is set then:
client.Search<Foo>(s => s.MatchAll());
will execute the request to: /defaultindex/foo/_search
/defaultindex/foo/_search
However, if a default index is NOT set, the request will go to just: /_search, effectively ignoring the type.
/_search
Instead it should go to: /_all/foo/_search.
/_all/foo/_search
The text was updated successfully, but these errors were encountered:
Fix missing _all when types are specified but no default index is set
2c07d8c
Closes #1160
Fix #1160: sort values on search failing round trip serialization
d72cd28
gmarz
No branches or pull requests
Currently, if a default index is set then:
will execute the request to:
/defaultindex/foo/_search
However, if a default index is NOT set, the request will go to just:
/_search
, effectively ignoring the type.Instead it should go to:
/_all/foo/_search
.The text was updated successfully, but these errors were encountered: