ProductVideo
Contains information about a product video.
type ProductVideo = MediaGalleryInterface & {
__typename?: 'ProductVideo'; /** Indicates whether the image is hidden from view. */
disabled?: Maybe<Scalars['Boolean']['output']>; /** The label of the product image or video. */
label?: Maybe<Scalars['String']['output']>; /** The media item's position after it has been sorted. */
position?: Maybe<Scalars['Int']['output']>; /** The URL of the product image or video. */
url?: Maybe<Scalars['String']['output']>; /** Contains a `ProductMediaGalleryEntriesVideoContent` object. */
video_content?: Maybe<ProductMediaGalleryEntriesVideoContent>;
};