1
settings.search.ModifyRequestParams = (params) => {
2
if (params.facets) {
3
params.facets = params.facets
4
.split(',')
5
.map(f => {
6
if (f === 'category') {
7
return 'category:50'; // Adjusts the category filter to allow for 50 values
8
}
9
return f; // Returns other facets unchanged
10
})
11
.join(',');
12
}
13
return params; // Returns the modified parameters
14
};
return 'category:50'; // Adjusts the category filter to allow for 50 values
ModifyRequestParams
If you need to retrieve more than the default limit of 30 values for your filter options, you will need to adjust the request parameters by modifying the ModifyRequestParams
function. This modification should be added in the Search setup within the Initialize section, where you can customize how requests are prepared before they are sent.