INTERFACE

AnalyticsPlaylist

An AnalyticsPlaylist

link GraphQL Schema definition

  • interface AnalyticsPlaylist {
  • # Total number of days listed in playlist
  • days_in_list: Int
  • # Chartmetric playlist ID
  • id: ID!
  • # Playlist cover image URL
  • image_url: String!
  • # Playlist ID from the partner, usually will be present in the playlist's URI/URL
  • is_private_playlist: Boolean!
  • media: Media
  • # Playlist Title
  • name: String!
  • # Curator name
  • owner_name: String!
  • # The peak position of the track ever in the playlist
  • peak_position: Int!
  • # Playlist ID from the partner, usually will be present in the playlist's URI/URL
  • playlist_eid: ID!
  • # The current position of the track in the playlist
  • position: Int!
  • # Removal date
  • removed_at: String
  • # Track name
  • track_name: String!
  • # Track streams
  • track_streams: Int!
  • # Url to link you to the playlist on the partner's website. Field resolver
  • # implemented by each Interfacing type of AnalyticsPlaylist
  • url: String
  • }