OBJECT

Soundtrack

A soundtrack is a week-long, curated collection of music hand-picked for commercial use

link GraphQL Schema definition

  • type Soundtrack implements Assignable, Displayable, Node {
  • collectionType: CollectionType! @deprecated( reason: "For older clients. Will be removed in the future." )
  • # The curator of the soundtrack
  • curator: Curator
  • description: String
  • display: Display
  • id: ID!
  • # Whether the soundtrack is in the provided music library
  • #
  • # Arguments
  • # library: [Not documented]
  • inMusicLibrary(library: ID): Boolean
  • name: String!
  • # How the soundtrack should be presented visually
  • #
  • # Arguments
  • # product: [Not documented]
  • presentation(product: Product): Presentation
  • # How the soundtrack should be played back by default
  • presets: Presets!
  • shortDescription: String
  • snapshot: String!
  • # A summary of the soundtrack's music.
  • # Must provide a market as an ISO country since a soundtrack's content
  • # may differ based on market.
  • #
  • # Arguments
  • # country: [Not documented]
  • summary(country: String!): SoundtrackSummary @deprecated( reason: "Use `tracks` instead." )
  • # Statistics about the Soundtrack'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]
  • # first: [Not documented]
  • # market: The market you want to look at. Can affect things like
  • # what album shows up for a track.
  • tracks(after: String, first: Int, market: IsoCountry): CollectionTracksConnection
  • }