GitHub

ExternalVideo

import { ExternalVideo } from '@daffodil/driver/shopify'

Represents a video hosted outside of Shopify.

type ExternalVideo = Media & Node & {
    __typename?: 'ExternalVideo';
    alt?: Maybe<Scalars['String']['output']>;
    embedUrl: Scalars['URL']['output'];
    embeddedUrl: Scalars['URL']['output'];
    host: MediaHost;
    id: Scalars['ID']['output'];
    mediaContentType: MediaContentType;
    originUrl: Scalars['URL']['output'];
    presentation?: Maybe<MediaPresentation>;
    previewImage?: Maybe<Image>;
}