Is it possible to sort based on element existing in multi value field?
Example:
a) document with "111"
put test/test/1
{
"bit_position" : [
1,
2,
3
]
}
b) document with 010
put test/test/2
{
"bit_position": [
2
]
}
Sorting based on "bit_position" = 3 should return document a and then b.
Thank you