diff --git a/enterprise_catalog/apps/catalog/algolia_utils.py b/enterprise_catalog/apps/catalog/algolia_utils.py index e19bb82f..aae52456 100644 --- a/enterprise_catalog/apps/catalog/algolia_utils.py +++ b/enterprise_catalog/apps/catalog/algolia_utils.py @@ -136,11 +136,14 @@ 'attributeForDistinct': 'aggregation_key', 'distinct': True, 'typoTolerance': False, + # unordered(): Ignores the position of the match within the attribute. + # From docs: https://www.algolia.com/doc/api-reference/api-parameters/searchableAttributes/#modifiers 'searchableAttributes': [ 'unordered(title)', 'unordered(full_description)', 'unordered(short_description)', 'unordered(additional_information)', + 'aggregation_key', 'partners', 'skill_names', 'skills',