Alokai

MediaGalleryEntry

Defines characteristics about images and videos associated with a specific product.

type MediaGalleryEntry = {
  __typename?: 'MediaGalleryEntry'; /** Details about the content of the media gallery item. */
  content?: Maybe<ProductMediaGalleryEntriesContent>; /** Indicates whether the image is hidden from view. */
  disabled?: Maybe<Scalars['Boolean']['output']>; /** The path of the image on the server. */
  file?: Maybe<Scalars['String']['output']>;
  id?: Maybe<Scalars['Int']['output']>; /** The alt text displayed on the storefront when the user points to the image. */
  label?: Maybe<Scalars['String']['output']>; /** Either `image` or `video`. */
  media_type?: Maybe<Scalars['String']['output']>; /** The media item's position after it has been sorted. */
  position?: Maybe<Scalars['Int']['output']>; /** Array of image types. It can have the following values: image, small_image, thumbnail. */
  types?: Maybe<Array<Maybe<Scalars['String']['output']>>>; /** The unique ID for a `MediaGalleryEntry` object. */
  uid: Scalars['ID']['output']; /** Details about the content of a video item. */
  video_content?: Maybe<ProductMediaGalleryEntriesVideoContent>;
};

Referenced Types

On this page