Attribute filters
Attribute filters can be used to filter by attribute values of parts. They are applied by the name of the attribute and the values to filter by. It is possible to add multiple attribute filters at the same time.
Partium.search.performSearch(
{
organizationName: '<organization-name>',
searchLanguage: '<search-language-code>',
attributeFilters: {
[ 'filter-attribute-name-a' ]: [ 'filter-attribute-value-a1', 'filter-attribute-value-a2' ],
[ 'filter-attribute-name-b' ]: [ 'filter-attribute-value-b1', 'filter-attribute-value-b2', 'filter-attribute-value-b3' ],
[ 'filter-attribute-name-c' ]: [ 'filter-attribute-value-c1' ],
...
},
}
)
Smart filters
Smart filters are essentially also attribute filters. They can be used the same way and represent a subset of available attribute filters. Smart filters are a suggestion of relevant attribute filters, based on the current search session. They are received in the SearchOutput object of the search response.