November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
Ah found a solution,
Switch the logic to:
"term != 'xxx' && term != 'yyy' ? true : false"
I'm wanting to exclude certain terms from being returned when faceting on a property.
The Elastic Search 'Exclude' value doesn't seam to be supported, but I have managed to exclude a single value by using the Script property:
"term == 'XXX' ? false : true"
But if I try to Or the values together I don't get any results back.
Can anyone help?