- Issue created by @admirlju
- Status changed to Closed: works as designed
over 1 year ago 1:44pm 13 September 2023 By the tests, I see that this is intended functionality. So I'll close the issue.
Noticed that the search_api_*
special required fields that were added in
📌
Remove entity id mapping config
Fixed
are also being set as sortable and filterable attributes. Since these are meant for functionality purposes I don't see the need for them to be set as filterable/sortable attributes.
generateSortableAttributes
function to exclude fields prefixed with "search_api_".$indexAttributes = array_keys($index->getFields(TRUE));
to a method and also exclude fields prefixed with "search_api_". $filterableAttributes = $index->getFields(TRUE);
should also exclude prefixed fields.Closed: works as designed
1.0
Code
By the tests, I see that this is intended functionality. So I'll close the issue.