OBJECT

Album

An album

link GraphQL Schema definition

  • type Album implements Displayable, Node {
  • # The release type
  • albumType: AlbumType
  • artists: [Artist]
  • # The markets where the album is licensed for playback
  • availableMarkets: [IsoCountry]
  • # A pair of colors generated from the album's cover art
  • colors: ColorPair @deprecated( reason: "Use display instead" )
  • # Copyright information for the album
  • copyrights: [Copyright]
  • display: Display
  • # True if album contains any explicit tracks
  • explicit: Boolean
  • id: ID!
  • # The album's cover art
  • image: OldImage @deprecated( reason: "Please use images instead" )
  • # The album's cover art
  • images: [OldImage] @deprecated( reason: "Use display instead" )
  • # If the album is licensed for playback in a particular market.
  • #
  • # Arguments
  • # market: [Not documented]
  • isAvailable(market: IsoCountry!): Boolean
  • name: String @deprecated( reason: "Use title instead." )
  • # Number of tracks for album
  • numberOfTracks: Int
  • releaseDate: ReleaseDate
  • title: String
  • # Arguments
  • # after: [Not documented]
  • # first: [Not documented]
  • # market: [Not documented]
  • tracks(after: String, first: Int, market: IsoCountry!): TrackConnection
  • }