OBJECT

YoutubeTopVideo

A Youtube video returned from the top videos api call

link GraphQL Schema definition

  • type YoutubeTopVideo {
  • # Category ID for a video
  • category_id: Int! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # Channel ID of a user a video is created to
  • channel_id: ID @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # Mapping Media ID that is existing on the platform for a user
  • existing_media_id: ID @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # Custom ID for YoutubeTopVideo VideoID_ArtistID
  • id: ID!
  • # Thumbnail URL for a video
  • thumbnail_url: String! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # Title of YouTube Video
  • title: String! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # Youtube Video ID
  • video_id: ID! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • # Number of views for a video
  • view_count: Int! @deprecated( reason: "WARNING: this field is only used in legacy applications" )
  • }