ProductAttribute
Contains a product attribute code and value.
type ProductAttribute = {
__typename?: 'ProductAttribute'; /** The unique identifier for a product attribute code. */
code: Scalars['String']['output']; /** The display value of the attribute. */
value: Scalars['String']['output'];
};