OBJECT
Media
Media type for displaying content
link GraphQL Schema definition
1 type Media { 2 3 # Default image asset, for mobile and higher. 4 MediaAsset! : 5 6 # Tablet specific image asset. 7 MediaAsset : 8 9 # Desktop specific image asset. 10 MediaAsset : 11 12 # Text describing the asset in a marketing context. 13 String : 14 15 # Text describing the asset. 16 String : 17 18 # Default image to render while a video is loading 19 MediaAsset : 20 21 }