Hello, I've been asking a lot of questions lately.
Is it impossible to search in all fields from the Elasticsearch 7.0.0 version now?
Can't I use _all anymore?
If I can't use it, is there any other way?
Or I wonder if I should search through 'field' in any case.
Thank you for watching my question again today.
Have a good day.
1 Like
Tomo_M
(Tomohiro Mitani)
February 9, 2022, 10:39am
2
I'm not sure about _all
, but you may query on all fields with multi-match query without fields
parameter.
dadoonet
(David Pilato)
February 9, 2022, 10:53am
3
Something like:
{
"query": {
"simple_query_string": {
"query": "foo"
}
}
}
Would that work?
1 Like
system
(system)
Closed
March 9, 2022, 10:53am
4
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.