We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
for introducing: What is the difference between a disjunctive and a conjunctive facet?
possible implementation -to add "conjunctive" field to describe facet
const results = search(db, { term: "Movie about cars and racing", properties: ["description"], facets: { "categories.primary": { limit: 3, order: "DESC", conjunctive: false }
in this case this facet values and counts have to be calculated upon additional search request eleminating filtering on this facet selected values
treat facet as disjunctive if search request on it has containsAny operator
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem Description
for introducing:
What is the difference between a disjunctive and a conjunctive facet?
Proposed Solution
possible implementation -to add "conjunctive" field to describe facet
in this case this facet values and counts have to be calculated upon additional search request eleminating filtering on this facet selected values
Alternatives
treat facet as disjunctive if search request on it has containsAny operator
Additional Context
No response
The text was updated successfully, but these errors were encountered: