OBJECT

Item

link GraphQL Schema definition

1type Item {
2
3# Unique identifier for the Item
4id: ID!
5
6# Identifies an item that requires a 3P account link before claiming; i.e. uses
7# "push" fulfillment
8requiresLinkBeforeClaim: Boolean
9
10# Identifies an item that uses claim code fulfillment
11grantsCode: Boolean
12
13# Identifies a "free game with prime" item
14isFGWP: Boolean
15
16# The internal path to redirect to once an item is no longer available
17redirectPath: String
18
19# Game related to the item
20game: GameV2
21
22# Offers related to the item
23offers: [Offer]
24
25# Text and visual media assets
26assets: ItemAssets
27
28# Alerts to be shown to the customer to inform them about a status of the item
29alertList: [Alert]
30
31# List of pixels to track item actions
32pixels: [Pixel]
33
34# Old style Journey associated with this Item.
35journey: 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.
39priority: Int
40
41}