search
AI OnAI Off
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
10 is the defailt number of items returned for a facet. To have more returned use:
GetDealersQuery()
.TermsFacetFor(x => x.CountiesList, x => x.Size = 20)
.Take(0)
.GetPagesResult();
TermsFacetFor is only giving me 10 terms, but I now there should be more. Here is my query for retreiving the facets:
Is there a default count on facets? I have tried using Take without success. I can see that result is returning all the pages of interest.