OBJECT

ItemAssets

Text and media assets for an item

link GraphQL Schema definition

1type ItemAssets {
2
3# Unique identifier for the assets object
4id: ID!
5
6# Title of the item
7title: String
8
9# Short-form description of the item
10shortformDescription: String
11
12# Long-form description of the item
13longformDescription: String
14
15# Details about what comes with the item
16itemDetails: [String]
17
18# List of platforms the item is claimable for
19platforms: [String]
20
21# Short-form legalese
22shortformLegalText: String
23
24# Long-form legalese
25longformLegalText: String
26
27# Link to external claiming location for mobile items
28externalClaimLink: String
29
30# A list of faqs relating to the item
31faqList: [FAQ]
32
33# Media rendered in the hero banner
34heroMedia: Media
35
36# Additional images/video about the content of the item
37additionalMedia: [Media]
38
39# Thumbnail image of the item rendered in the item content box
40thumbnailImage: Media
41
42# Media to use when rendering this Item as a card in a shoveler.
43cardMedia: Media
44
45# Visual media showing customers how to claim the item
46claimVisualInstructions: Media
47
48# Text instructions for claiming the item
49claimInstructions: String
50
51}

link Required by