Attribute
Contains details about the attribute, including the code and type.
type Attribute = {
__typename?: 'Attribute'; /** The unique identifier for an attribute code. This value should be in lowercase letters without spaces. */
attribute_code?: Maybe<Scalars['String']['output']>; /** Attribute options list. */
attribute_options?: Maybe<Array<Maybe<AttributeOption>>>; /** The data type of the attribute. */
attribute_type?: Maybe<Scalars['String']['output']>; /** The type of entity that defines the attribute. */
entity_type?: Maybe<Scalars['String']['output']>; /** The frontend input type of the attribute. */
input_type?: Maybe<Scalars['String']['output']>; /** Details about the storefront properties configured for the attribute. */
storefront_properties?: Maybe<StorefrontProperties>;
};