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