this is my elastic search query, I want to search in all languages under data.title and not particularly eng.
if i put data.title there are 0 results.
{
"bool": {
"must": [
{
"span_near": {
"clauses": {
"0": {
"span_multi": {
"match": {
"wildcard": {
"data.Title.eng": "method"
}
}
}
},
"1": {
"span_multi": {
"match": {
"wildcard": {
"data.Title.eng": "system"
}
}
}
}
},
"slop": 1,
"in_order": false
}
}
]
}
}