OBJECT

Playlist

A playlist

link GraphQL Schema definition

  • type Playlist implements Assignable, Displayable, Node {
  • collectionType: CollectionType! @deprecated( reason: "For older clients. Will be removed in the future." )
  • composer: PlaylistComposer
  • # The curator of the playlist
  • curator: Curator
  • description: String
  • display: Display
  • id: ID!
  • # Whether the playlist is in the provided music library
  • #
  • # Arguments
  • # library: [Not documented]
  • inMusicLibrary(library: ID): Boolean
  • name: String!
  • # Information about how the playlist should be presented visually
  • #
  • # Arguments
  • # product: What product flavour the presentation should be in
  • presentation(
  • product: Product
  • ): Presentation @deprecated( reason: "See display." )
  • # How the playlist should be played back by default
  • presets: Presets!
  • shortDescription: String
  • # Arguments
  • # after: [Not documented]
  • # before: [Not documented]
  • # first: [Not documented]
  • # last: [Not documented]
  • similarPlaylists(after: String, before: String, first: Int, last: Int): SimilarPlaylistsConnection
  • snapshot: String!
  • # Statistics about the playlist's content
  • #
  • # Arguments
  • # market: [Not documented]
  • trackStatistics(
  • market: IsoCountry!
  • ): TrackStatistics @deprecated( reason: "This is a beta API and may change or be removed." )
  • # Arguments
  • # after: [Not documented]
  • # country: Deprecated, use market instead.
  • # first: [Not documented]
  • # market: ISO 3166-1 alpha-2, i.e "SE" for Sweden
  • tracks(after: String, country: String, first: Int, market: IsoCountry): CollectionTracksConnection
  • type: PlaylistType!
  • }