OBJECT
PrimeOffer
A digital entitlement that is displayed to a user.
link GraphQL Schema definition
1 type PrimeOffer { 2 3 # Unique identifer for the offer. 4 ID! : 5 6 # Unique identifier for the retail equivalent of the offer 7 String : 8 9 # Unique identifier for the catalog equivalent of the offer 10 String : 11 12 # Metadata for the content being offered. 13 PrimeOfferContent : 14 15 # Offer entitlement method. 16 String : 17 18 # Information about what is being offered. 19 # Supplied in Markdown. 20 String : 21 22 # Images, videos, gifs, used to display the offer content. 23 PrimeOfferAsset!] : [ 24 25 # Images, videos, gifs, grouped by purposed and used to display the offer content. 26 PrimeOfferAssets : 27 28 # Ranking for which the offer should be displayed ordered asc. 29 # An item with 0 priority would be shown before an item with 100 priority. 30 Int! : 31 32 # Connection for the current user. 33 OfferSelfConnection : 34 35 # Metadata related to the categorization of the offer (e.g. Free Games with 36 # Prime). 37 PrimeOfferTag!] : [ 38 39 # Primary title for the offer. 40 String : 41 42 # Time at which the offer is available. 43 Time : 44 45 # Time at which the offer stops being available. 46 Time : 47 48 # The list of products being offered. 49 PrimeOfferProduct!] : [ 50 51 # Journey associated with a prime offer 52 # Some PrimeOffers are linked to external Journey detail pages where the customer 53 # can claim content 54 Journey : 55 56 # Game containing relevant data 57 Game : 58 59 # Indicator to determine if the offer is a retail offer. 60 Boolean : 61 62 # The id of the related base game metadata 63 String : 64 65 # The title of the related base game metadata 66 String : 67 68 }