
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2025 11:23 AM
Hello,
I use FacetField on custom metadata to have specific facets but the bucket of the facet is limited to 100 elements even if there is more than one hundred values for this metadata.
In this facet, if I search for a value that is not in the 100 elements selected, it doesn't find it even if some documents have this value in their metadata.
In facet-filed.interface.d.ts (interface FacetField) : It seems that this element is limited to 100 elements
buckets?: SearchFilterList<FacetFieldBucket>;
Are you aware of this problem ? Is there a way to unlock this limit ?
Thanks in advance.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 weeks ago
I have found a solution to customize the max number of elements in the facet.
I had to use the parameter “limit” in the facet declared in my json file to specify the maximum number of elements the facet can hold. Use full if the metadata associated to the facet contains more than 100 different values.
"field": "croc:site_rattachement_patrimoine",
"mincount": 1,
"limit": 400,
"label": "Site de rattachement",
"settings": {
"allowUpdateOnChange": true,
"hideDefaultAction": true,
"facetOrder": 100,
"bucketSortDirection": "ASCENDING",
"bucketSortBy": "LABEL"
}
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-12-2025 05:47 AM
To be more precise, I am talking about the Search Filter chip component
https://www.alfresco.com/abn/adf/docs/content-services/components/search-filter-chips.component/

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 weeks ago
I have found a solution to customize the max number of elements in the facet.
I had to use the parameter “limit” in the facet declared in my json file to specify the maximum number of elements the facet can hold. Use full if the metadata associated to the facet contains more than 100 different values.
"field": "croc:site_rattachement_patrimoine",
"mincount": 1,
"limit": 400,
"label": "Site de rattachement",
"settings": {
"allowUpdateOnChange": true,
"hideDefaultAction": true,
"facetOrder": 100,
"bucketSortDirection": "ASCENDING",
"bucketSortBy": "LABEL"
}
}
