OBJECT
WatchParty
Contains all information for Prime Video Watch Parties.
link GraphQL Schema definition
1 type WatchParty { 2 3 # Enum representing the restrictions on this Watch Party. 4 : WatchPartyContentRestriction! 5 6 # Option Watch Party decoration. 7 : WatchPartyDecoration 8 9 # The catalog item id played for this watch party. 10 : ID! @deprecated( reason: "Use decoration.item.id" ) 11 12 # Unique ID of the watch party. 13 : ID! 14 15 # Progress of the current state, null for offline watch parties. 16 : WatchPartyProgress 17 18 # Current state of the watch party. 19 : WatchPartyState! 20 21 # Current title of the watch party. 22 : String! 23 24 # CCVs for the watch party. 25 : Int! 26 27 }