ConfigurableAttributeOption
Contains details about a configurable product attribute option.
type ConfigurableAttributeOption = {
__typename?: 'ConfigurableAttributeOption'; /** The ID assigned to the attribute. */
code?: Maybe<Scalars['String']['output']>; /** A string that describes the configurable attribute option. */
label?: Maybe<Scalars['String']['output']>; /** The unique ID for a `ConfigurableAttributeOption` object. */
uid: Scalars['ID']['output']; /** A unique index number assigned to the configurable product option. */
value_index?: Maybe<Scalars['Int']['output']>;
};