OBJECT

WatchParty

Contains all information for Prime Video Watch Parties.

link GraphQL Schema definition

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