OBJECT

YoutubeChannel

A youtube channel

link GraphQL Schema definition

  • type YoutubeChannel implements Social {
  • # Flag to check if this is archived
  • archived: Boolean!
  • # Artist connected to this social
  • artist: Artist!
  • # Artist associated with a channel
  • artist_id: ID!
  • # List of artists connected to this social
  • artists: [Artist!]! @deprecated( reason: "WARNING: this field is not currently used in any application" )
  • # List of artists syncing a channel
  • artists_already_syncing: [Artist!]!
  • # Channel ID on YouTube
  • channel_id: String
  • # Total number of comments on a channel
  • comment_count: Int @deprecated( reason: "Changes to the YouTube api deprecated this functionality" )
  • created_at: DateTime!
  • # Associated deployer name
  • deployer_name: String
  • # Description about the channel
  • description: String!
  • # Email used for YouTube
  • email: String
  • # Flag to check if there's an authentication error
  • had_auth_failure: Boolean
  • id: ID!
  • # Flag to check if the channel is syncing
  • is_already_syncing: Boolean!
  • # Flag to check if the social is syncing
  • is_syncing: Boolean
  • # Flag for checking if the social needs reconnection
  • needs_reconnect: Boolean!
  • # Network Object for a network associated with a social
  • network: Network
  • # Network ID for a network associated with a social
  • network_id: Int
  • # Arguments
  • # success_path: [Not documented]
  • # error_path: [Not documented]
  • reconnect_url(success_path: String, error_path: String): String
  • refresh_after: DateTime!
  • refresh_token: String
  • release_broadcast_uid: String
  • # Model name on Vydia Platform related to a Social
  • social_model_name: String
  • # Number of subscriber to a channel
  • subscriber_count: Int
  • # Social Sync Config Object for a social that is opted for syncing
  • sync_config: SyncConfig
  • # Get the size of the thumbnail
  • #
  • # Arguments
  • # size: [Not documented]
  • thumbnail_url(size: String!): String!
  • # Channel Title
  • title: String!
  • token: String!
  • updated_at: DateTime!
  • # URL for a social
  • url: String
  • # Number of videos posted on YouTube
  • video_count: Int
  • # Total number of views on a channel
  • view_count: Int!
  • }