SelectedConfigurableOption
Contains details about a selected configurable option.
type SelectedConfigurableOption = {
__typename?: 'SelectedConfigurableOption'; /** The unique ID for a `ConfigurableProductOptions` object. */
configurable_product_option_uid: Scalars['ID']['output']; /** The unique ID for a `ConfigurableProductOptionsValues` object. */
configurable_product_option_value_uid: Scalars['ID']['output']; /** @deprecated Use `SelectedConfigurableOption.configurable_product_option_uid` instead. */
id: Scalars['Int']['output']; /** The display text for the option. */
option_label: Scalars['String']['output']; /** @deprecated Use `SelectedConfigurableOption.configurable_product_option_value_uid` instead. */
value_id: Scalars['Int']['output']; /** The display name of the selected configurable option. */
value_label: Scalars['String']['output'];
};