StorefrontProperties
Indicates where an attribute can be displayed.
type StorefrontProperties = {
__typename?: 'StorefrontProperties'; /** The relative position of the attribute in the layered navigation block. */
position?: Maybe<Scalars['Int']['output']>; /** Indicates whether the attribute is filterable with results, without results, or not at all. */
use_in_layered_navigation?: Maybe<UseInLayeredNavigationOptions>; /** Indicates whether the attribute is displayed in product listings. */
use_in_product_listing?: Maybe<Scalars['Boolean']['output']>; /** Indicates whether the attribute can be used in layered navigation on search results pages. */
use_in_search_results_layered_navigation?: Maybe<Scalars['Boolean']['output']>; /** Indicates whether the attribute is displayed on product pages. */
visible_on_catalog_pages?: Maybe<Scalars['Boolean']['output']>;
};