You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 1, 2024. It is now read-only.
Besides not returning the correct results (#3), not all facet results are returned. If I add a facet on creatorName and have nodes/documents indexed with different values in that field, not all are returned as facets (although the ones that are have the right amount of hits).
E.g. if I have 2 nodes with creatorName "Administrator" and "Ronald Barendse" and facet using query.Facet("creatorName"), it only returns 1 facet value for "Administrator" with 1 hit.
Strangely, if I include both as facet values using query.Facet("creatorName", new [] { "Administrator", "Ronald Barendse" }), both facet values are returned (both with 1 hit, as expected).
Besides not returning the correct results (#3), not all facet results are returned. If I add a facet on
creatorNameand have nodes/documents indexed with different values in that field, not all are returned as facets (although the ones that are have the right amount of hits).E.g. if I have 2 nodes with
creatorName"Administrator" and "Ronald Barendse" and facet usingquery.Facet("creatorName"), it only returns 1 facet value for "Administrator" with 1 hit.Strangely, if I include both as facet values using
query.Facet("creatorName", new [] { "Administrator", "Ronald Barendse" }), both facet values are returned (both with 1 hit, as expected).