I have a document in elasticsearch
{"uuid":"eaa91372-d541-4b24-bdf4-3cb4902d2da1","artistName":"Amadeo Modigliani","Review":"abc","Origin":"pak","isNew":"false"}
I am using match query
in my code to get the document it's returning the correct results on giving needed search values eg: "Amadeo Modigliani"
, or "Amadeo"
or "Modigliani"
but when I pass "Amad"
only ES did not find the document ,Please suggest if there is any other query which will perform the search using this scanerio or is there any other way to perform this task ,Thanks