Hi.
Why does the following prefix query return zero results:
{
"prefix": {
"some_field": {
"value": "hello wor"
}
}
}
Whereas the simple_query_string seems do what I want (and return the relevant results):
{
"simple_query_string": {
"fields": ["some_field"],
"default_operator": "and",
"query": "(hello wor*)"
}
}
Because the query is user-given, I'd really need to use the prefix-query, but it's not working the way I expected. Any tips, why that is?