as mentioned iam trying to get the Duplicate Industries within the Column Industries in ABC index, and when i execute the below query iam getting other results
GET /abc/_search
{
"query": {
"match": {
"industries.keyword": {
"query": "Aca*",
"fuzziness": "AUTO"
}
}
},
"_source": ["industries.keyword"]
}
and iam getting an below output
{
"took": 0,
"timed_out": false,
"_shards": {
"total": 1,
"successful": 1,
"skipped": 0,
"failed": 0
},
"hits": {
"total": {
"value": 0,
"relation": "eq"
},
"max_score": null,
"hits":
}
}
but i need an output as follows, do let me know how this can be achieved
{
"industries": "academics"
}
{
"industries": "academy"
}
{
"industries": "Acadimi"
}