i have elastic search documents which contains this kind of data
{events_data:
[{
v1 : [5,10],
v2 : [6,7],
v3 : [15,18]
}....]
}
Now when ever user query for the data between
query : {filters : {
events : [5,18]
}
}
it should return me all three array in events_data as all lies in this range.
can somebody help me to do this?