OBJECT

Artist

An Artist

link GraphQL Schema definition

  • type Artist implements Displayable, Node {
  • # The albums, singles and compilations that the artist has released. Sorted by
  • # release date, newest first.
  • #
  • # Arguments
  • # after: [Not documented]
  • # albumType: The albums types to return, defaults to everything
  • # first: [Not documented]
  • # market: [Not documented]
  • albums(after: String, albumType: [AlbumType], first: Int, market: IsoCountry): AlbumConnection
  • colors: ColorPair @deprecated( reason: "Use display instead" )
  • display: Display
  • id: ID!
  • imageUrl: String @deprecated( reason: "Please use images instead" )
  • images: [OldImage]
  • name: String
  • soundtrackId: ID @deprecated( reason: "Use station instead" )
  • station: Playlist
  • # Tracks by the artist.
  • #
  • # Arguments
  • # after: [Not documented]
  • # first: [Not documented]
  • # market: [Not documented]
  • # sortBy: [Not documented]
  • tracks(
  • after: String,
  • first: Int,
  • market: IsoCountry,
  • sortBy: TracksForArtistSort
  • ): TrackConnection
  • }