Hi all!
I have a record in index, that contains some spec characters " ", "/", "-":
{
"documentData" :
{
"refNo" : "8652 / 58996-3",
"status" : "Rejected",
}
}
How should I do query_string search if I have only "8652589963" value?
Thanks!
"query_string": {
"query": "(documentData.refNo: /86525[\/ -]8996[\/ -]3/)"
} - it doesn't work.