AttributeFilterInput
An input object that specifies the filters used for attributes.
type AttributeFilterInput = {
is_comparable?: InputMaybe<Scalars['Boolean']['input']>; /** Whether a product or category attribute can be filtered or not. */
is_filterable?: InputMaybe<Scalars['Boolean']['input']>; /** Whether a product or category attribute can be filtered in search or not. */
is_filterable_in_search?: InputMaybe<Scalars['Boolean']['input']>; /** Whether a product or category attribute can use HTML on front or not. */
is_html_allowed_on_front?: InputMaybe<Scalars['Boolean']['input']>; /** Whether a product or category attribute can be searched or not. */
is_searchable?: InputMaybe<Scalars['Boolean']['input']>; /** Whether a product or category attribute can be used for price rules or not. */
is_used_for_price_rules?: InputMaybe<Scalars['Boolean']['input']>; /** Whether a product or category attribute is used for promo rules or not. */
is_used_for_promo_rules?: InputMaybe<Scalars['Boolean']['input']>; /** Whether a product or category attribute is visible in advanced search or not. */
is_visible_in_advanced_search?: InputMaybe<Scalars['Boolean']['input']>; /** Whether a product or category attribute is visible on front or not. */
is_visible_on_front?: InputMaybe<Scalars['Boolean']['input']>; /** Whether a product or category attribute has WYSIWYG enabled or not. */
is_wysiwyg_enabled?: InputMaybe<Scalars['Boolean']['input']>; /** Whether a product or category attribute is used in product listing or not. */
used_in_product_listing?: InputMaybe<Scalars['Boolean']['input']>;
};