ProductMediaGalleryEntriesContent
Contains an image in base64 format and basic information about the image.
type ProductMediaGalleryEntriesContent = {
__typename?: 'ProductMediaGalleryEntriesContent'; /** The image in base64 format. */
base64_encoded_data?: Maybe<Scalars['String']['output']>; /** The file name of the image. */
name?: Maybe<Scalars['String']['output']>; /** The MIME type of the file, such as image/png. */
type?: Maybe<Scalars['String']['output']>;
};