Hi,
I am using ELK GA5.0.0. I have a field field_a
in my index. I run the following query;
field_a:qwe*
My intention is to display entries having field_a
entries qwe001
, qwe002
, qwe003
etc. Also, I would like to display entries with NONE
in field_a
. To begin with, I pinned a field with *
in search box. When I edit the query, it was like this;
{
"query": {
"match": {
"field_a": {
"query": "qwe001",
"type": "phrase"
}
}
}
}
and I changed it to;
{
"query": {
"match": {
"field_a": {
"query": "qwe*"
}
}
}
}
Now it says no results to display. How can I do this?
Thanks.