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