ProductVariant
type ProductVariant = {
__typename?: 'ProductVariant';
id: Scalars['Int'];
key?: Maybe<Scalars['String']>;
sku?: Maybe<Scalars['String']>;
prices?: Maybe<Array<ProductPrice>>; /** Returns a single price based on the price selection rules. */
price?: Maybe<ProductPrice>;
images: Array<Image>;
assets: Array<Asset>;
availability?: Maybe<ProductVariantAvailabilityWithChannels>; /** This field contains raw attributes data */
attributesRaw: Array<RawProductAttribute>;
};