Thanks, that did the trick!
On Tue, Dec 6, 2016 at 8:58 AM Shai Erera wrote:
> Hey Matt,
>
> You basically don't need to use DDQ in that case. You can construct a
> BooleanQuery with a MUST_NOT clause for filter out the facet path. Here's a
> short code snippet:
>
> String indexedField = config.
Hey Matt,
You basically don't need to use DDQ in that case. You can construct a
BooleanQuery with a MUST_NOT clause for filter out the facet path. Here's a
short code snippet:
String indexedField = config.getDimConfig("Author").indexFieldName; // Find
the field of the "Author" facet
Query q = new
I'm currently drilling down adding a facet path, but I'd like to be able to
do the same as a NOT query. Is there any way to do an exclusion drill down
on a facet to exclude docs that match the facet while including all others?
Thanks