I have a multivalued field in my schema called citation
. One of the documents in the database has values for this field like:
"citation":["13-33",
"12-44"],
I want to be able to do a query like: citation:(13 44)
and not have this document returned. In other words, I do not want queries to span individual values for the field.
Is there a way to do this?
Some further examples using the document above of how I want this to work:
- citation:(13 33) --> Returns it.
- citation:(12 44) --> Returns it.
- citation:(12) --> Returns it.
- citation:(33 13) --> Returns it.
- citation:(33 12) --> DOES NOT RETURN IT.