OBJECT

WatchPartyItem

Contains all fields needed to render a watch party item.

link GraphQL Schema definition

1type WatchPartyItem {
2
3# String representing the age rating.
4contentRating: String
5
6# Enum representing the restrictions on this item. When available, defer to
7# the Watch Party content restriction.
8contentRestriction: WatchPartyContentRestriction!
9
10# Additional details based on the item type.
11details: WatchPartyItemDetails
12
13# List of genres.
14genres: [String!]!
15
16# Whether or not this item has children content.
17hasChildren: Boolean!
18
19# Unique GTI.
20id: ID!
21
22# If the content is mature.
23isMature: Boolean!
24
25# If this is a child, ID of the parent.
26parentID: ID
27
28# Link to continue watching on PV.
29primeVideoLink: String
30
31# Prime video rating.
32primeVideoRating: PrimeVideoRating
33
34# Null if user is logged out, contains eligibility information.
35self: WatchPartyItemSelfEdge
36
37# List of actors and actresses.
38starring: [String!]!
39
40# Localized summary.
41summary: String
42
43# Localized box art.
44thumbnailURL: String!
45
46# Localized title.
47title: String!
48
49# Video content type, i.e. episode or series.
50type: WatchPartyItemType!
51
52# Publication year.
53yearPublished: Int
54
55# Whether the content has parental control restrictions enabled.
56isParentalControlRestricted: Boolean
57
58}