OBJECT
Item
link GraphQL Schema definition
1 type Item { 2 3 # Unique identifier for the Item 4 : ID! 5 6 # Identifies an item that requires a 3P account link before claiming; i.e. uses 7 # "push" fulfillment 8 : Boolean 9 10 # Identifies an item that uses claim code fulfillment 11 : Boolean 12 13 # Identifies a "free game with prime" item 14 : Boolean 15 16 # The internal path to redirect to once an item is no longer available 17 : String 18 19 # Game related to the item 20 : GameV2 21 22 # Offers related to the item 23 : [Offer] 24 25 # Text and visual media assets 26 : ItemAssets 27 28 # Alerts to be shown to the customer to inform them about a status of the item 29 : [Alert] 30 31 # List of pixels to track item actions 32 : [Pixel] 33 34 # Old style Journey associated with this Item. 35 : Journey 36 37 # Ranking for which the item should be displayed ordered asc. 38 # An item with 0 priority would be shown before an item with 100 priority. 39 : Int 40 41 }