ConfigurableProductOptionsSelection
Contains metadata corresponding to the selected configurable options.
type ConfigurableProductOptionsSelection = {
__typename?: 'ConfigurableProductOptionsSelection'; /** An array of all possible configurable options. */
configurable_options?: Maybe<Array<Maybe<ConfigurableProductOption>>>; /** Product images and videos corresponding to the specified configurable options selection. */
media_gallery?: Maybe<Array<Maybe<MediaGalleryInterface>>>; /** The configurable options available for further selection based on the current selection. */
options_available_for_selection?: Maybe<Array<Maybe<ConfigurableOptionAvailableForSelection>>>; /** A variant represented by the specified configurable options selection. The value is expected to be null until selections are made for each configurable option. */
variant?: Maybe<SimpleProduct>;
};