Re: Query a particular index from a multivalued field.
there's no such syntax OOB. You could append an index to it. So your input doc would look something like: doc 1= { "id": "1", "status": [ "b1", "a2" ] } and search appropriately. Perhaps this would be a duplicated field used only when you wanted to
Query a particular index from a multivalued field.
Hi all, is there a way i can query a particular index of a multivalued field. e.g lets say i have a document like this doc 1= { "id": "1", "status": [ "b", "a" ] } doc2= { "id": "1", "status": [ "c", "b" ] }