GitHub

Video

Represents a Shopify hosted video.

import { Video } from '@daffodil/driver/shopify'
type Video = Media & Node & {
    __typename?: 'Video';
    alt?: Maybe<Scalars['String']['output']>;
    id: Scalars['ID']['output'];
    mediaContentType: MediaContentType;
    presentation?: Maybe<MediaPresentation>;
    previewImage?: Maybe<Image>;
    sources: Array<VideoSource>;
}
Type Options
Video Media & Node & { __typename?: 'Video'; alt?: Maybe<Scalars['String']['output']>; id: Scalars['ID']['output']; mediaContentType: MediaContentType; presentation?: Maybe<MediaPresentation>; previewImage?: Maybe<Image>; sources: Array<VideoSource>; }