@abhinav ,
If I have a document who has a structure similar to this:
"type": "bar",
"a_r": {
"foo: {
"foo1": {
"foo2": {
"10": {
"hr": 236,
"hrt": 1612627200
},
"12": {
"hr": 395,
"hrt": 1612627200
}
}
}
},
"foo3": {
"foo4": {
"foo5": {
"10": {
"hr": 369,
"hrt": 1610683200
}
}
}
}
}
I am not interested in search into this object, but just retrieve it as a part of the result object
Do you think it is possible to index the root, in this case, the “a_r” so that when I do a query on type = “bar” to get the a_r data?
I tried to index the a_r data as text, number, object (dynamic), I stored, etc. But it seems is not returned on any query, so I am not sure it is indexed or the query doesn’t know how to retrieve it