OBJECT
RadioRecentlyPlayed
Content recently played in the client.
link GraphQL Schema definition
1 type RadioRecentlyPlayed { 2 3 # The type of content the ID maps to. 4 : RadioRecentlyPlayedType! 5 6 # The id of the recently played item. 7 : ID! 8 9 # Recently played playlist metadata. 10 : RadioPlaylist 11 12 # Recently played station metadata. 13 : RadioStation 14 15 # The time this ID was last recently played by the current user. 16 : Time! 17 18 }