Apparently I can query ES with the following wildcard query_string:
curl 'http://localhost:9200/my-index/_search?pretty' -d '{
"query": {
"query_string": {
"query": "*:sw?ft"
}
}
}'
Does this query against _all field ? which makes it equivalent to:
curl 'http://localhost:9200/my-index/_search?pretty' -d '{
"query": {
"query_string": {
"default_field" : "_all"
"query": "sw?ft"
}
}
}'
what if _all is disabled in indexing? I couldn't find the documentation for it.
Thanks in advance.