I have a multivalued field of names and I have to find the index of the matching value in the list.
DOC example:
profile_id: 1
names: [ "My name", "something", "My second name", "My nickname"]
query:
profile_id:1 AND names:"My secon name"~
Expected result:
my doc, and the index of the matched, 2
Is it possible?