123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /* tslint:disable */
- /* eslint-disable */
- // @generated
- // This file was automatically generated and should not be edited.
- // ====================================================
- // GraphQL query operation: GetFeaturedVideos
- // ====================================================
- export interface GetFeaturedVideos_featured_videos_media_location_HTTPVideoMediaLocation {
- __typename: 'HTTPVideoMediaLocation'
- host: string
- port: number | null
- }
- export interface GetFeaturedVideos_featured_videos_media_location_JoystreamVideoMediaLocation {
- __typename: 'JoystreamVideoMediaLocation'
- dataObjectID: string
- }
- export type GetFeaturedVideos_featured_videos_media_location =
- | GetFeaturedVideos_featured_videos_media_location_HTTPVideoMediaLocation
- | GetFeaturedVideos_featured_videos_media_location_JoystreamVideoMediaLocation
- export interface GetFeaturedVideos_featured_videos_media {
- __typename: 'VideoMedia'
- pixelHeight: number
- pixelWidth: number
- location: GetFeaturedVideos_featured_videos_media_location
- }
- export interface GetFeaturedVideos_featured_videos_channel {
- __typename: 'Channel'
- id: string
- avatarPhotoURL: string
- handle: string
- }
- export interface GetFeaturedVideos_featured_videos {
- __typename: 'Video'
- id: string
- title: string
- description: string
- views: number
- duration: number
- thumbnailURL: string
- publishedOnJoystreamAt: GQLDate
- media: GetFeaturedVideos_featured_videos_media
- channel: GetFeaturedVideos_featured_videos_channel
- }
- export interface GetFeaturedVideos {
- featured_videos: GetFeaturedVideos_featured_videos[]
- }
|