/* eslint-disable */
import * as Types from '@graphcommerce/graphql-mesh/.mesh';

export type ConfigurableOptionsFragment = { __typename: 'ConfigurableProduct', uid: string, sku?: string | null, name?: string | null, url_key?: string | null, price_range: { minimum_price: { final_price: { currency?: Types.CurrencyEnum | null, value?: number | null }, regular_price: { currency?: Types.CurrencyEnum | null, value?: number | null } } }, configurable_options?: Array<{ attribute_code?: string | null, uid: string, label?: string | null, position?: number | null, use_default?: boolean | null, values?: Array<{ __typename: 'ConfigurableProductOptionsValues', uid?: string | null, use_default_value?: boolean | null, store_label?: string | null, swatch_data?: { __typename: 'ColorSwatchData', value?: string | null } | { __typename: 'ImageSwatchData', thumbnail?: string | null, value?: string | null } | { __typename: 'TextSwatchData', value?: string | null } | null } | null> | null } | null> | null, configurable_product_options_selection?: { options_available_for_selection?: Array<{ attribute_code: string, option_value_uids: Array<string | null> } | null> | null } | null, variants?: Array<{ attributes?: Array<{ code?: string | null, uid: string } | null> | null, product?: { uid: string } | null } | null> | null, description?: { __typename: 'ComplexTextValue', html: string } | null, short_description?: { __typename: 'ComplexTextValue', html: string } | null };
