OBJECT
RadioCurrentlyPlaying
Content currently playing in the client for a user.
link GraphQL Schema definition
1 type RadioCurrentlyPlaying { 2 3 # The radio content promotion json data. 4 : [RadioContentPromotion!] 5 6 # Whether the track is currently playing or not. 7 : Boolean! 8 9 # The Track Details of the currently playing track. 10 : RadioTrack 11 12 }