OBJECT
Radio
Twitch Radio access.
link GraphQL Schema definition
1 type Radio { 2 3 # Twitch Radio account information for the user. 4 : RadioAccount! 5 6 # Fetch the requesting user's currently playing radio content. 7 : RadioCurrentlyPlaying! @deprecated( reason: "Use 'currentRadioTrack' in 'channel' instead." ) 8 9 # Fetch a radio playlist by ID. Tracks can be requested here, but can be slow to 10 # respond. 11 (: ID!): RadioPlaylist 12 13 # Fetch all, or filtered subset of, radio playlists. Cannot request track data 14 # from this query. 15 (: RadioPlaylistFilter): [RadioPlaylist!]! 16 17 # Fetch the requesting user's recently played radio content ids. Optionally 18 # filtered by type. 19 (: RadioRecentlyPlayedFilter): [RadioRecentlyPlayed!]! 20 21 # Fetch a radio station by ID. Returns the initial queue with a token to get the 22 # next tracks if no pageToken is passed. 23 (: ID!, : String, : Int): RadioStation 24 25 # Fetch all radio stations. 26 : [RadioStation!]! 27 28 }