Re: Facet DrillDown Exclusion

2016-12-06 Thread Matt Hicks
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.

Re: Facet DrillDown Exclusion

2016-12-06 Thread Shai Erera
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

Facet DrillDown Exclusion

2016-12-05 Thread Matt Hicks
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