I'm currently trying to create an Endeca query using the Java API for a URLENEQuery
. The current query is:
collection()/record[CONTACT_ID = "xxxxx" and SALES_OFFICE = "yyyy"]
I need it to be:
collection()/record[(CONTACT_ID = "xxxxx" or CONTACT_ID = "zzzzz") and
SALES_OFFICE = "yyyy"]
Currently this is being done with an ERecSearchList
with CONTACT_ID
and the string I'm trying to match in an ERecSearch
object, but I'm having difficulty figuring out how to get the UrlENEQuery
to generate the or in the correct fashion as I have above. Does anyone know how I can do this?