OBJECT

MusicLibrary

A music library contains added soundtracks, playlists and schedules.

link GraphQL Schema definition

  • type MusicLibrary {
  • # The added playlists
  • #
  • # Arguments
  • # after: [Not documented]
  • # before: [Not documented]
  • # first: [Not documented]
  • # last: [Not documented]
  • playlists(after: String, before: String, first: Int, last: Int): MusicLibraryPlaylistsConnection
  • revision: String
  • # The added schedules
  • #
  • # Arguments
  • # after: [Not documented]
  • # before: [Not documented]
  • # first: [Not documented]
  • # last: [Not documented]
  • schedules(after: String, before: String, first: Int, last: Int): MusicLibrarySchedulesConnection
  • # The added soundtracks
  • #
  • # Arguments
  • # after: [Not documented]
  • # before: [Not documented]
  • # first: [Not documented]
  • # last: [Not documented]
  • soundtracks(
  • after: String,
  • before: String,
  • first: Int,
  • last: Int
  • ): MusicLibrarySoundtracksConnection @deprecated( reason: "Playlists now contain stations and playlists." )
  • }